I'm trying to update table into an .accdb
file by a C# program.
I've opened the connection in this way:
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();
but I get this error:
Could not find installable ISAM
I also installed the AccessDatabaseEngine x86, but nothing happened.
Any suggestions?
Thanks!