Click here to Skip to main content
15,895,283 members
Please Sign up or sign in to vote.
4.00/5 (1 vote)
See more:
I Have Following Code.
C#
try
{
     string str = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=FromTrn.mdb;UID =admin;PWD =sisvb;";
     OleDbConnection AccConn = new OleDbConnection(str);
     AccConn.Open();
}
catch (Exception Er) 
{ 
     MessageBox.Show( Er.Message.ToString()); 
}


This code generate following error, how to get rid of this error ?

"could not find installable ISAM"
Posted
v2
Comments
Kiran Susarla 12-Dec-12 4:38am    
Is your OS 32 or 64 bit? which version of office are you using?

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900