I'm having a slight problem understanding how to use nested Transactions......
Whenever an error occurs in a nested transaction, the parent transaction seems to also be rolled back. Trying to call a Rollback on this parent Transaction after an error (Caught with Catch (SQLiteException e) ) fails stating there is no transaction active....
I have even taklen the care to ensure all Transaction names (within c#) are distinct.
Is this normal behaviour?
Shane.
PS the code works fine once there are no errors thrown in a nested transaction.....
PPS Never mind, I found what I was looking for. Remember: Search is your friend :) Transactions ARE rolled back automatically on errors within. Kinda a need to know thing....