J
Jeff0803
Guest
I'm trying to connect MS Access DB using following connection string but "Could not find installable ISAM error" occur.
sConnectionString = "Provider=Microsoft.ACE.oledb.12.0; Data Source=" + @"C:\CSharpSample\UserManage\data\remsys.mdb;User Id=admin; Jet OLEDB;Database Password=abcdefg;";
Because ACE.OLEDB doesn't support 64bit platform, I changed it to x86 from Visual studio 2005 like following.
My OS is Windows 10 64bit.
How can I solve this issue?
Continue reading...
sConnectionString = "Provider=Microsoft.ACE.oledb.12.0; Data Source=" + @"C:\CSharpSample\UserManage\data\remsys.mdb;User Id=admin; Jet OLEDB;Database Password=abcdefg;";
Because ACE.OLEDB doesn't support 64bit platform, I changed it to x86 from Visual studio 2005 like following.
My OS is Windows 10 64bit.
How can I solve this issue?
Continue reading...