I,
I am looking for a way to share a sql connection between two (or more) C/C++ executables.
By sql connection sharing, i mean to have a transactional context in common : the A module can start the transaction, the B module do some work, and the C can commit the transaction.
Of course, if a module wants it, it can throw an exception and the whole shared transaction should be rollbacked.
Do you a a simple solution ? It should work cross platform.
Many thanks for your time,
Olivier