From: Thomas G. (JIRA) <tr...@fi...> - 2007-09-20 13:05:28
|
Bad message error received -------------------------- Key: DNET-116 URL: http://tracker.firebirdsql.org/browse/DNET-116 Project: .NET Data provider Issue Type: Bug Components: ADO.NET Provider Affects Versions: 2.1.0 RC 1, 2.1.0 Beta 3, 2.1.0 Beta 2, 2.1.0 Beta 1, 2.0.1, 2.0.1 RC2, 2.0.1 RC 1, 2.0, 1.7.1, 1.6, 2.1.0 RC 2, 2.1.0 Environment: Windows XP Firebird 1.5.3 and 2.0.1 Reporter: Thomas Gaboriau Assignee: Carlos Guzman Alvarez In this case : try { FbBackup fbBackup = new FbBackup(); fbBackup.ConnectionString = @"DataSource=localhost;Database=C:\Program Files\Firebird\Firebird_1_5\examples\EMPLOYEE.FDB; " + "User=user;Password=password;Role=;Port=3050;Connection lifetime=;Connection timeout=;"+ "Pooling=true;MaxPoolSize=1;Dialect=3;Charset=NONE;Packet Size=8192;Server Type=0;"; //I specify 2 backup files with the same name fbBackup.BackupFiles.Add(new FbBackupFile("samename.fbk", 1048576)); fbBackup.BackupFiles.Add(new FbBackupFile("samename.fbk", 0)); fbBackup.Execute(); } catch ( FbException e ) { //Message of the catched exception should be "multiple sources or destinations specified" ( ErrorCode of the IscException = 336330761 ) //but I receive "invalid BLOB ID" ( ErrorCode of the IscException = 9 ??) Console.WriteLine(e.ErrorCode + " | " + e.Message); } Like the bug doesn't appear with the version 2.5 Alpha 1, I compare the sources and I noticed that the method "Identify" doesn't exist to create a GdsServiceManager but it's called in GdsDataBase. So if I recopy this method in GdsServiceManager and I called it in the Method "Attach", the good exception is thrown. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://tracker.firebirdsql.org/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira |
From: firebird d. n. <fir...@aw...> - 2008-04-15 18:04:28
|
Hi, I'm getting the following: FirebirdSql.Data.Firebird.FbException: No message for error code 335544726 found. at FirebirdSql.Data.Firebird.FbConnection.Close() I'm using fb dotnet connector for .net 1.1 and fb v1.5 Any thoughts? |
From: Jiri C. <di...@ci...> - 2008-04-15 18:16:47
|
This error means "Error reading data from the connection.". -- Jiri {x2} Cincura (CTO x2develop.com) http://blog.vyvojar.cz/jirka/ | http://www.ID3renamer.com |
From: firebird d. n. <fir...@aw...> - 2008-04-15 18:51:56
|
Ah - thanks. Maybe the connection has somehow closed... I'll start by checking for that. Where would I find what the codes mean for next time please? Is there a web page or something? Jiri Cincura wrote: > This error means "Error reading data from the connection.". > > |
From: Jiri C. <di...@ci...> - 2008-04-15 19:36:04
|
On 4/15/08, firebird dotnet news <fir...@aw...> wrote: > Where would I find what the codes mean for next time please? Is there a > web page or something? For 1.5 you can use http://www.firebirdsql.org/doc/contrib/fb_1_5_errorcodes.pdf . Of course, sources can be also source for looking for. The 2.0 version is on http://www.firebirdsql.org/doc/contrib/fb_2_0_errorcodes.pdf . -- Jiri {x2} Cincura (CTO x2develop.com) http://blog.vyvojar.cz/jirka/ | http://www.ID3renamer.com |
From: firebird d. n. <fir...@aw...> - 2008-04-15 20:45:16
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type"> </head> <body bgcolor="#ffffff" text="#000000"> Thanks! [Wish I'd asked that question earlier <span class="moz-smiley-s1"><span> :-) </span></span>]<br> <br> Jiri Cincura wrote: <blockquote cite="mid:d2f...@ma..." type="cite"> <pre wrap="">On 4/15/08, firebird dotnet news <a class="moz-txt-link-rfc2396E" href="mailto:fir...@aw..."><fir...@aw...></a> wrote: </pre> <blockquote type="cite"> <pre wrap=""> Where would I find what the codes mean for next time please? Is there a web page or something? </pre> </blockquote> <pre wrap=""><!----> For 1.5 you can use <a class="moz-txt-link-freetext" href="http://www.firebirdsql.org/doc/contrib/fb_1_5_errorcodes.pdf">http://www.firebirdsql.org/doc/contrib/fb_1_5_errorcodes.pdf</a> . Of course, sources can be also source for looking for. The 2.0 version is on <a class="moz-txt-link-freetext" href="http://www.firebirdsql.org/doc/contrib/fb_2_0_errorcodes.pdf">http://www.firebirdsql.org/doc/contrib/fb_2_0_errorcodes.pdf</a> . </pre> </blockquote> </body> </html> |