Can any one tell how to connect Ms access 2010 (.accdb ) database with odbc driver in c# and .NET 4.0
I tried
string connetionString = ("Driver={Microsoft Access Driver(*.mdb*.accdb)};DBQ=C:\\Users\\Administrator\\Desktop\\New folder\\MatchDetails.accdb;");
OdbcConnection myConnection = new OdbcConnection(connetionString);
try
{
myConnection.Open();
MessageBox.Show("Connection Open ! ");
myConnection.Close();
}
catch (Exception ex)
{
MessageBox.Show("Can not open connection ! ");
}
throwing this Exception
ERROR [IM002] [Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified exception