Subject | Re: [IBO] How I now the Transaction is Active? |
---|---|
Author | Helen Borrie |
Post date | 2005-07-26T23:47Z |
At 04:08 PM 26/07/2005 -0300, you wrote:
To test whether the transaction is started"
if Transaction1.Started then....
To test whether the transaction is started and is holding uncommitted DML
work:
if Transaction1.TransactionIsActive then...
Helen
>Hello, I migrate my system with IBX to IBO, and I have I problem, in IBX IThere are two tests:
>use:
> if Transcation1.Active then
>
>
>How I do in IBO?
To test whether the transaction is started"
if Transaction1.Started then....
To test whether the transaction is started and is holding uncommitted DML
work:
if Transaction1.TransactionIsActive then...
Helen