Are there any gotchas with using a `transaction { ...
# cfml-general
d
Are there any gotchas with using a
transaction { query1... query2... }
without a
transaction action='commit';
? I just learned that the commit action is not needed, but curious as to what impact there is without it.
a
it commits at the end of the transaction block anyhow
You only need the commit if you need - for some reason - to commit midway through the block.
d
thats what I thought.