Subject Re: [IBO] Testing for Transaction running
Author Woody
From: "Alan McDonald" <alan@...>
>I want to test if a transaction is started/running and if not, start it
> explicitly. So I want to test if it's running.

I always use this test:

if not (Started or InTransaction) then
StartTransaction;

It works no matter how the transaction was started. At least, so far...

Woody (TMW)