1

私は実際に、firebird データベースをホストする Linux サーバーで .NET Web サービスをホストする必要があるプロジェクトに取り組んでいます。http://www.mono-project.com/Firebird_Interbaseからサンプル コードを実行してメソッドを呼び出そうとすると、Web サービスから次のように返されます。

System.NotImplementedException: The requested feature is not implemented.
  at System.Net.Sockets.Socket.IOControl (IOControlCode ioControlCode, System.Byte[] optionInValue, System.Byte[] optionOutValue) [0x00000] in <filename unknown>:0 
  at FirebirdSql.Data.Common.Extensions.SetKeepAlive (System.Net.Sockets.Socket socket, UInt64 time, UInt64 interval) [0x00000] in <filename unknown>:0 
  at FirebirdSql.Data.Client.Managed.Version10.GdsConnection.Connect () [0x00000] in <filename unknown>:0 
  at FirebirdSql.Data.FirebirdClient.ClientFactory.CreateManagedDatabase (FirebirdSql.Data.FirebirdClient.FbConnectionString options) [0x00000] in <filename unknown>:0 
  at FirebirdSql.Data.FirebirdClient.ClientFactory.CreateDatabase (FirebirdSql.Data.FirebirdClient.FbConnectionString options) [0x00000] in <filename unknown>:0 
  at FirebirdSql.Data.FirebirdClient.FbConnectionInternal.Connect () [0x00000] in <filename unknown>:0 
  at (wrapper remoting-invoke-with-check) FirebirdSql.Data.FirebirdClient.FbConnectionInternal:Connect ()
  at FirebirdSql.Data.FirebirdClient.FbConnectionPool.Create () [0x00000] in <filename unknown>:0 
  at FirebirdSql.Data.FirebirdClient.FbConnectionPool.CheckOut () [0x00000] in <filename unknown>:0 
  at (wrapper remoting-invoke-with-check) FirebirdSql.Data.FirebirdClient.FbConnectionPool:CheckOut ()
  at FirebirdSql.Data.FirebirdClient.FbConnection.Open () [0x00000] in <filename unknown>:0 

プロバイダーの NETProvider-3.1.0.0-MONO_LINUX バージョン ( http://www.firebirdsql.org/en/net-provider/ ) を使用しています。どうやらこのメソッドは Mono ではまだ実装されていないようですが、ソース コードを持っていないので、回避策はありますか? そうでない場合、モノ用に作成されたこのプロバイダーはまったく役に立たず、テストされていないため、あるに違いないと確信しています... :(

4

1 に答える 1

2

この記事に基づいて、ドライバーの以前のバージョン (NETProvider-2.6.5-MONO_LINUX) を使用して解決策を見つけました。

面白いのは、問題のドライバーが Firebird の公式 Web サイトにもうリストされていないことです...とにかく、問題がある場合は、fb sourceforge からこれを試してください: NETProvider-2.6.5-MONO_LINUX

于 2013-08-09T19:45:09.507 に答える