|
From: Russell R <Ru...@pa...> - 2010-01-19 20:28:50
|
I have tried all the following option, but I couldn't get any more
information. Do you have any suggestions?
//tw.WriteLine("Message");
//tw.WriteLine(e.Message);
tw.WriteLine("InnerException");
tw.WriteLine(e.InnerException);
//tw.WriteLine("Inner Message");
//tw.WriteLine(e.InnerException.Message);
//tw.WriteLine("Inner Exception Exception");
//tw.WriteLine(e.InnerException.InnerException.Message);
tw.WriteLine("Base Exception");
tw.WriteLine(e.GetBaseException().ToString());
tw.WriteLine("Base Exception Message");
tw.WriteLine(e.GetBaseException().Message);
//for (int i=0;i<e.Errors.Count;i++){
//tw.WriteLine("Error "+i.ToString());
// tw.WriteLine("Cl :"+e.Errors[i].Class+", N
:"+e.Errors[i].Number.ToString()+", Ln :"+e.Errors[i].LineNumber+", Msg
:"+e.Errors[i].Message);
//}
//tw.WriteLine("Stack Trace");
//tw.WriteLine(e.StackTrace);
tw.WriteLine(e.ToString());
--
View this message in context: http://old.nabble.com/Firebird-Client-error-during-Fetch-cycle-tp27213450p27232184.html
Sent from the firebird-net-provider mailing list archive at Nabble.com.
|