Page 1 of 1

Sinffer/Profiler of SQL Query from dotConnect to PostgreSQL

Posted: Wed 03 Feb 2010 08:54
by elid
I am looking for a way to see the SQL queries that send from the dotConnect to PostgreSQL DB.

Is there is a Sinffer/Profiler or a log file that I can read the full SQL Query that sent to PostgreSQL DB?

I an working with C# on Windows OS


Can you reccomend about you tool or external tool for win32 OS that does this Sinffer/Profiler operation?

Thanks,and best regards
Eli

Posted: Wed 03 Feb 2010 12:03
by Shalex
To extend monitoring capabilities of our data access products there is an additional free tool called dbMonitor. It is easy-to-use tool to provide visual monitoring of your database applications. For more information, please refer to our documentation.

Posted: Wed 03 Feb 2010 17:51
by elid
Thanks,

It is realy nice tool.


But just a small comment, for using the PostreSql DB I must use the PgSqlMonitor class.


Sample:

private readonly PgSqlMonitor pgSqlDbMonitor = new PgSqlMonitor();


if (enablePgSqlDbMonitoring)
pgSqlDbMonitor.IsActive = true;


Eli