Tools: añadido UIBMonitor.

git-svn-id: https://192.168.0.254/svn/Proyectos.Tecsitel_FactuGES2/trunk@245 0c75b7a4-871f-7646-8a2f-f78d34cc349f
This commit is contained in:
David Arranz 2008-02-05 17:03:47 +00:00
parent 6671f00f1b
commit 91f9c9734f
4 changed files with 41 additions and 0 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,41 @@
-------------------------------------UIB SQL MONITOR-----------------------------------
This tool show in real time queries used by an application connected to Interbase or Firebird.
It is also possible to view and sort query's performances.
This SQL monitor usually don't need you modify your application if it use an Interbase or Firebird
library (gds32.dll, fbclient.dll or fbembed.dll).
It also works with dot.net applications.
-- Knows issues --
Sometimes nothing appear in the scroll box
1. Have you selected the righ library ?.
2. Hooked program can't find "madCHook.dll", in this case copy this DLL in system32 directory.
3. You need administrator rights.
-- "Firebird .Net Data Provider" compatibility --
You have to change connection string like this:
FbConnectionStringBuilder *cs = new FbConnectionStringBuilder();
cs->DataSource = "localhost";
cs->Database = "C:\\Program Files\\Firebird\\Firebird_2_0\\examples\\empbuild\\EMPLOYEE.FDB";
cs->UserID = "SYSDBA";
cs->Password = "masterkey";
cs->Dialect = 3;
cs->ServerType = 1; // <<<<< here
In this case your application will use "fbembed.dll", so just copy "fbclient.dll"
in the hooked application directory and rename it.
-- Used tools --
MadCodeHook: http://www.madshi.net
VirtualTreeView: http://www.delphi-gems.com/VirtualTreeview
SynEdit: http://synedit.sourceforge.net
UIB: http://www.progdigy.com
Henri Gourvest
http://www.progdigy.com