interbase transaction

Discussion of open issues, suggestions and bugs regarding UniDAC (Universal Data Access Components) for Delphi, C++Builder, Lazarus (and FPC)
Post Reply
inageib
Posts: 184
Joined: Wed 26 Aug 2009 14:11

interbase transaction

Post by inageib » Fri 19 Mar 2010 21:17

Hello,
when I set property "isolationlevel" of the UniTransaction component to "ilCustom" how I can write the paramter my self for interbase ?

thanks

Dimon
Devart Team
Posts: 2910
Joined: Mon 05 Mar 2007 16:32

Post by Dimon » Mon 22 Mar 2010 13:20

TUniTransaction doesn't support setting parameters because this option is specific only to InterBase server.
To solve the problem you can use internal object to set parameters, like this:

Code: Select all

(TDBAccessUtils.GetITransaction(UniTransaction) as TGDSTransaction).GetParams.Text := ...

inageib
Posts: 184
Joined: Wed 26 Aug 2009 14:11

Post by inageib » Mon 22 Mar 2010 14:05

ok but plz add it as a new feature

thanks

Dimon
Devart Team
Posts: 2910
Joined: Mon 05 Mar 2007 16:32

Post by Dimon » Fri 26 Mar 2010 08:05

We will investigate the possibility of adding this functionality in the near future. As soon as we solve this question we will let you know.

inageib
Posts: 184
Joined: Wed 26 Aug 2009 14:11

Post by inageib » Fri 26 Mar 2010 12:14

great thanks alot

I switched recently to unidac from another package and I like to continue use unidac for interbase

Post Reply