我正在尝试.accdb
通过 C# 程序将表更新为文件。
我以这种方式打开了连接:
cn.ConnectionString= @"Provider=Microsoft.ACE.OLEDB.12.0;Data Source=D:\test.accdb;Persist Security Info=True;Database Password=myDb";
cmd.Connection = cn;
string query = "UPDATE MY_TABLE SET NOTE='TEST'";
cmd.CommandText = query;
cn.Open();
但我收到此错误:
找不到可安装的 ISAM
我还安装了 AccessDatabaseEngine x86,但什么也没发生。
有什么建议么?
谢谢!