Why sometimes I get an "Invalid transaction object" exception? - Stack Overflow most recent 30 from stackoverflow.com2009-11-24T01:27:13Zhttp://stackoverflow.com/feeds/question/420022http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/420022/why-sometimes-i-get-an-invalid-transaction-object-exception0Why sometimes I get an "Invalid transaction object" exception?Erick Sasse2009-01-07T11:48:49Z2009-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#4204243Answer by Craig Stuntz for Why sometimes I get an "Invalid transaction object" exception?Craig Stuntz2009-01-07T14:12:32Z2009-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#6077380Answer by Erick Sasse for Why sometimes I get an "Invalid transaction object" exception?Erick Sasse2009-03-03T19:17:04Z2009-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>