C# win フォームで Firebird db を使用しようとしています。接続を開こうとすると、次のエラーが表示されます。
An unhandled exception of type 'System.BadImageFormatException' occurred in FirebirdSql.Data.FirebirdClient.dll
追加情報: 形式が正しくないプログラムをロードしようとしました。(HRESULT からの例外: 0x8007000B)
私の接続文字列は
<add name="dbConFirebirdSQL" connectionString="User Id=locuser_r;Password=locpassword_r;Database=LOCDBOES_R.FDB;ServerType=Embedded;" />
string sql5 = "sql query here";
try
{
FbConnection con95 = new FbConnection(connectionString);
con95.Open();
FbCommand cmd95 = new FbCommand(sql5, con95);
cmd95.Parameters.Add("@t_id", FbDbType.Integer).Value = tid;
cmd95.CommandType = CommandType.Text;
cmd95.ExecuteNonQuery();
}
catch (FbException ex)
{
MessageBox.Show("4--" + ex.Message);
}
何が間違っているのかアドバイスしてください。