Firebird が組み込まれたデータベースを使用してデスクトップ アプリケーションを開発しています。FirebirdSql.Data.FirebirdClient.dll をダウンロードします。この dll を参照に追加します。これらのファイルを出力フォルダーに追加します
aliases.conf
fbembed.dll
firebird.conf
firebird.msg
ib_util.dll
icudt30.dll
icuin30.dll
icuuc30.dll
そして、この接続文字列を使用します
String connectionString="ServerType=0;User=SYSDBA;Password=masterkey;Dialect=3;Database=mydb.fdb";
FbConnection con = new FbConnection(connectionString);
try
{
con.Open();
}
catch (Exception ex)
{
MessageBox.Show(ex.ToString());
}
しかし、このエラーが発生し、Google で検索しましたが、解決策が見つかりません。誰か助けてくれませんか? 注:これを見ましたが、うまくいきませんでした。
http://stackoverflow.com/questions/4014097/how-to-connect-and-use-firebird-db-embedded-server-with-visual-c-sharp-2010?answertab=votes#tab-top
FirebirdSql.Data.FirebirdClient.FbException (0x80004005): Unable to complete network request to host "localhost". ---> Unable to complete network request to host "localhost".
FirebirdSql.Data.FirebirdClient.FbConnectionInternal.Connect()
FirebirdSql.Data.FirebirdClient.FbConnectionPool.Create()
FirebirdSql.Data.FirebirdClient.FbConnectionPool.CheckOut()
FirebirdSql.Data.FirebirdClient.FbConnection.Open()