I have a question on transaction blocks within transactions. Does the
parent transaction just inherit all the embedded transactions in it or
are they treated separately? In other words, can an inner trnasaction
block get committed bofore we call the outside block's commit?
Thanks.
If your DB actually supports nested transactions they will always be nested -
that is if transaction B is inside transaction A, and you rollback A, B will
be rolled back as well. Which is the sole purpose behind nested transactions.
Diez
Thanks,
Sam.
On Jun 26, 4:31 am, "Diez B. Roggisch" <diez.roggi...@artnology.com>
wrote:
The same thing. Nested transactions is something a database has to
support. The TG API just calls the sql-api's functions, and that's it.
diez