Re: enabling psqlODBC logs

Поиск
Список
Период
Сортировка
От BGoebel
Тема Re: enabling psqlODBC logs
Дата
Msg-id 1321378654770-4995095.post@n5.nabble.com
обсуждение исходный текст
Ответ на enabling psqlODBC logs  (tamanna madaan <tamanna.madaan@globallogic.com>)
Список pgsql-odbc
Hi

Try to add "debug=1" or "commlog=1" to the connection string, the string
which holds info for port, database to connect and so on.

SQLDriverConnect(dbc, NULL,

"Driver={PostgreSQL};Server=127.0.0.1;Port=5432;Database=postgres;Uid=postgres;Pwd=mypwd;debug=1;commlog=1;",
SQL_NTS,
                       NULL, 0, NULL, SQL_DRIVER_COMPLETE);

If you use ODBC.INI you add debug=1 / commlog =1 to the section of your
database.

The logs created by the driver mylog_*.log / psqlodbc_*.log you find in a
temp folder. Use a search tool to find out where exactly they are.

hope this helps

regards


--
View this message in context: http://postgresql.1045698.n5.nabble.com/enabling-psqlODBC-logs-tp4983604p4995095.html
Sent from the PostgreSQL - odbc mailing list archive at Nabble.com.

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

Предыдущее
От: tamanna madaan
Дата:
Сообщение: enabling psqlODBC logs
Следующее
От: BGoebel
Дата:
Сообщение: Re: Error Retrieving Catalog Info