Hi, > Please find the code: > -------------------- > retValue=SQLTables(hstmt, NULL, 0, NULL, 0, NULL, 0, (SQLCHAR*) "TABLE", > SQL_NTS); >
You should pass the schemaname to the above call to restrict the result set to a specific schema. For example: SQLTables(hstmt, NULL, 0, (SQLCHAR *)"public", SQL_NTS, NULL, 0, (SQLCHAR*) "TABLE", SQL_NTS); Regards, Nikhils -- http://www.enterprisedb.com -- Sent via pgsql-bugs mailing list (pgsql-bugs@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-bugs