Re: SQLTables does not retrieve everything

Поиск
Список
Период
Сортировка
От Clemens Ladisch
Тема Re: SQLTables does not retrieve everything
Дата
Msg-id 9f28f9ae-b412-9484-453f-6de676b64986@ladisch.de
обсуждение исходный текст
Ответ на Re: SQLTables does not retrieve everything  (Igor Korot <ikorot01@gmail.com>)
Список pgsql-odbc
Igor Korot wrote:
>>>> ret = SQLTables( m_hstmt, NULL, 0, NULL, 0, NULL, 0, NULL, 0 );
>>>>
>>>> only retrieves the tables from the current database/catalog and "public" schema.
>>>> There is no tables/view on the INFORMATION_SCHEMA and all the system tables.
>>>
>>> System tables are hidden by default, unless you specify them explicitly
>>> in the TableType parameter.

E.g.:

  const char *all_types = "SYSTEM TABLE,TABLE,VIEW,FOREIGN TABLE,MATVIEW";
  SQLTables(..., all_types, strlen(all_types));


Regards,
Clemens


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

Предыдущее
От: Igor Korot
Дата:
Сообщение: Re: SQLTables does not retrieve everything
Следующее
От: Igor Korot
Дата:
Сообщение: Re: NOTIFY/LISTEN with ODBC interface