Re: [Firebird-net-provider] Also problems with beta 1 with VS 2005

2005-12-03 Thread Martin Schmid
I installed SDK again - no different - :-( ""Martin Schmid"" <[EMAIL PROTECTED]> schrieb im Newsbeitrag news:[EMAIL PROTECTED] > On my installation the SDK 2.0 is installed! > > <[EMAIL PROTECTED]> schrieb im Newsbeitrag > news:[EMAIL PROTECTED] >> Hello: >> >>>I also getting the same message and

Re: [Firebird-net-provider] Suggestion: Object cannot be cast from DBNull to other types

2005-12-03 Thread Carlos Guzmán Álvarez
Hello: And I couldn't use "DataSourceAttribute" before unit test in vs2005(not nunit). I can find any documentation on a DataSourceAttribute, pelase explain what is this and where to find cdocs about it :) -- Carlos Guzmán Álvarez Vigo-Spain http://carlosga.blogspot.com/ ---

Re: [Firebird-net-provider] Suggestion: Object cannot be cast from DBNull to other types

2005-12-03 Thread Carlos Guzmán Álvarez
Hello: provider couldn't Access the database where it have a long "chinese path",I spent for half hours to fix it: search for [(short)database.Length] and replace it with: (short)((System.Text.Encoding.GetEncoding("GB18030").GetBytes(database)).Length) It's in "FesDatabase.cs",and we should repl

[Firebird-net-provider] MultiModule Assembly for embedded Firebird

2005-12-03 Thread Oleg Deribas
Hi, Today I've exprerimented with SqLite .NET provider: http://sourceforge.net/projects/sqlite-dotnet2/ And it was interesting for me that: "The core sqlite3 codebase and the ADO.NET wrapper are combined into one multi-module assembly." Is it possible with embedded Firebird to create such m

[Firebird-net-provider] Re: execute procdure with return output

2005-12-03 Thread Carlos Guzmán Álvarez
Hello: myConnection = new FbConnection(myConnectionString) myConnection.Open() sqlcmd = "EXECUTE PROCEDURE DELETESUBCATS(@catid);" myTxn = myConnection.BeginTransaction() MyCommand = New FbCommand(sqlCmd, MyConnection,