From:
<car...@te...> - 2003-12-19 11:42:00
|
Hello: > Now and then we get an exception in "BeginTrancaction". > > When I call BeginTransaction(), then I get this error: > > > at FirebirdSql.Data.Firebird.Gds.GdsTransaction.BeginTransaction() > at FirebirdSql.Data.Firebird.FbTransaction.BeginTransaction() > at FirebirdSql.Data.Firebird.FbConnection.BeginTransaction() What is the Exception message :) ?? Can you change your log code for anything like this: BusinessComponents.LogToFile.Instance.logALineToFile(ex.Message,true); or BusinessComponents.LogToFile.Instance.logALineToFile( ex.Message + "\r\n" + ex.StackTrace + "\r\n" + ex.Source, true); FbException class has two properties that can be of help: - ErrorCode ( main error code sent by the Firebird Server if the inner exception is GdsException ) - Errors ( list of individual errors received from the Firebird Server if inner exception is GdsException ) -- Best regards Carlos Guzmán Álvarez Vigo-Spain |