Subject Re: [IBO] How I now the Transaction is Active?
Author Helen Borrie
At 04:08 PM 26/07/2005 -0300, you wrote:
>Hello, I migrate my system with IBX to IBO, and I have I problem, in IBX I
>use:
> if Transcation1.Active then
>
>
>How I do in IBO?

There are two tests:

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