All,
Should i put a transaction.join() call each time I use an inner transaction.
Tx1.begin()
Tx2.begin()
Tx2.commit()
Tx1.join() <------------------------- Oblige ????????
Tx1.commit()
In the commit, a Transaction.close() is done on the current thread, so is it
necessary to re-attach the mother transaction to the current thread ?
It works without, but I have some instabilities, it is safer and is it the
properly way ?
Thanx !!!
