I convert all my delphi 7 projects, to UniDac Suite, but i got a strange behavior in my applications, in a simple select statement, like this sample:
Code: Select all
qry.SQL.Clear();
qry.SQL.Add('select * from RDB$TRIGGERS');
qry.Open;
Code: Select all
con.StartTransaction;
qry.SQL.Clear();
qry.SQL.Add('select * from RDB$TRIGGERS');
qry.Open;
con.Rollback;
Code: Select all
con.Username := 'SYSDBA';
con.Password := 'masterkey';
con.ProviderName := 'Interbase';
con.Server := '127.0.0.1';
con.Database := 'c:\sample.fdb';
con.SpecificOptions.Values['ClientLibrary'] := 'fbclient.dll';
con.SpecificOptions.Values['Charset'] := 'ISO8859_1';
con.Open;
P.S: I use http://www.sinatica.com/ to follow database behavior.


