Is there a way using an connected Adapter to get a list of the Views in a database from a specific schema?
We use the LLBL system as our data access layer.
Here's the SQL I use (Is there a better way using the internal LLBL tools?)
SELECT table_name AS object_name,
table_schema AS schema_name,
table_type AS object_type
FROM INFORMATION_SCHEMA.TABLES
WHERE table_type = 'VIEW'
and table_schema='rpt'