Why sometimes I get an "Invalid transaction object" exception? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-24T01:27:13Z http://stackoverflow.com/feeds/question/420022 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/420022/why-sometimes-i-get-an-invalid-transaction-object-exception 0 Why sometimes I get an "Invalid transaction object" exception? Erick Sasse 2009-01-07T11:48:49Z 2009-03-03T19:17:04Z <p>Is there something wrong with this code?<br /> Sometimes I get an unhandled "Invalid transaction object" exception in it:</p> <pre><code>procedure BlaBla; var TD: TDBXTransaction; begin TD := SQLConnection.BeginTransaction; try SQLConnection.ExecuteDirect('some sql command'); SQLConnection.ExecuteDirect('some sql command'); SQLConnection.CommitFreeAndNil(TD); except SQLConnection.RollbackFreeAndNil(TD); end; end; </code></pre> <p>This exception is being raised to the user, so I assume it's raised by RollbackFreeAndNil, since all rest is inside a try..except.</p> <p>Should I wrap RollbackFreeAndNil with another try..except? What a mess.</p> <p>I'm using Delphi 2009, DBX with Firebird 2.1 and Devart's driver.</p> http://stackoverflow.com/questions/420022/why-sometimes-i-get-an-invalid-transaction-object-exception/420424#420424 3 Answer by Craig Stuntz for Why sometimes I get an "Invalid transaction object" exception? Craig Stuntz 2009-01-07T14:12:32Z 2009-01-07T16:15:53Z <p>What would happen if CommitFreeAndNil threw an exception?</p> <p>RollbackFreeAndNil would be called. Would TD be valid then?</p> <p>You're eating the exception, and hence the evidence. Don't do that; re-throw:</p> <pre><code>procedure BlaBla; var TD: TDBXTransaction; begin TD := SQLConnection.BeginTransaction; try SQLConnection.ExecuteDirect('some sql command'); SQLConnection.ExecuteDirect('some sql command'); except SQLConnection.RollbackFreeAndNil(TD); raise; end; SQLConnection.CommitFreeAndNil(TD); end; </code></pre> http://stackoverflow.com/questions/420022/why-sometimes-i-get-an-invalid-transaction-object-exception/607738#607738 0 Answer by Erick Sasse for Why sometimes I get an "Invalid transaction object" exception? Erick Sasse 2009-03-03T19:17:04Z 2009-03-03T19:17:04Z <p>The problem is that SQLConnection.BeginTransaction returns nil if SQLConnection is not Connected to the database. And then I get the exception of invalid transaction object.</p> <p>I never expected that. It should try to connect or raise an exception. Returning nil doesn't make sense to me.</p>