Sinffer/Profiler of SQL Query from dotConnect to PostgreSQL

Discussion of open issues, suggestions and bugs regarding ADO.NET provider for PostgreSQL
Post Reply
elid
Posts: 5
Joined: Sun 24 Jan 2010 17:09

Sinffer/Profiler of SQL Query from dotConnect to PostgreSQL

Post by elid » Wed 03 Feb 2010 08:54

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

Shalex
Site Admin
Posts: 9543
Joined: Thu 14 Aug 2008 12:44

Post by Shalex » Wed 03 Feb 2010 12:03

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.

elid
Posts: 5
Joined: Sun 24 Jan 2010 17:09

Post by elid » Wed 03 Feb 2010 17:51

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

Post Reply