Hello,
Maybe this question is a little far-fetched but i'll give it a shot..
Can i connect to an ongoing transaction in some way?
The problem is that i have [C++ Program A] that does various operations on a database and then calls [C# Program B] that does more operation on the same database.
I want all those operations from both programs to run in a single transaction - thus allowing rollback for example.
Is it somehow possible?
Thanks.