Hi,
I'm wondering if it's possible to create my own services that I can use in an ADO transaction. For example, I'd like to
- make some database updates in an ADO transaction
- make some arbitrary updates in some arbitrary service that I create
- either commit or rollback the transaction, and have my arbitrary service understand that the transaction has been either committed or rolled back, and take the appropriate action
Basically, I'd like to implement the Commit() and Rollback() methods myself, but I can't figure out how to 'join' that to an ADO transaction.
Cheers, thanks a lot.