From: Carlos G. A. <car...@te...> - 2003-08-28 21:39:11
|
Hello: > I have a fairly clean install of RH9.0. > > I then installed all the Mono 0.26 Release rpms, works. > > Then I installed Firebird FirebirdCS-1.5.0.3773-RC5, works. > > Then I installed FirebirdNETProvider1.5-Alpha1-Doc.zip. > > Then I tried the C# Example code at http://go-mono.com/firebird.html, > with my password and database path. > > It compiles but when I run it I get this: > > Unhandled Exception: FirebirdSql.Data.Firebird.FbException: No message > for code 335544721 found. Hello: i have found the problem seems that sockets with the Nagle algorithm disable don't work ok, i have sent a message to the mono list for see if it's a mono problem or an OS related issue, if you want to solve it you can comment this code at GdsSattachement.Connect() method: socket.SetSocketOption(SocketOptionLevel.Socket, SocketOptionName.NoDelay, 1); -- Best regards Carlos Guzmán Álvarez Vigo-Spain |