Re: BUG #5180: How to get only User created tables by using SQLTables() in ODBC

Поиск
Список
Период
Сортировка
От Nikhil Sontakke
Тема Re: BUG #5180: How to get only User created tables by using SQLTables() in ODBC
Дата
Msg-id a301bfd90911230458k1a3fb859i929d77d8185e48da@mail.gmail.com
обсуждение исходный текст
Ответ на BUG #5180: How to get only User created tables by using SQLTables() in ODBC  ("Jitendra Lenka" <jitendra.lenka@csqldb.com>)
Список pgsql-bugs
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

В списке pgsql-bugs по дате отправления:

Предыдущее
От: Heikki Linnakangas
Дата:
Сообщение: Re: Multixact and prepared transactions
Следующее
От: Robert Haas
Дата:
Сообщение: Re: BUG #5206: wal_sync_method in stock postgresql.conf may be wrong