Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
What version of Ace are you using..12.0? – DJ KRAZE Jan 3 at 22:30
For Acces databases (.mdb, .accdb, etc...), you want to use [OleDbConnection][1], like this: ` conn = new System.Data.OleDb.OleDbConnection(@"Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:\\Users\\Administrator\\Desktop\\New folder\\MatchDetails.accdb;");` – DJ KRAZE Jan 3 at 22:30

1 Answer

You have a typo in your connection string:

string connectionString = ("Driver={Microsoft Access Driver(*.mdb, *.accdb)};DBQ=C:\\Users\\Administrator\\Desktop\\New folder\\MatchDetails.accdb;");

(note the comma in the Driver name)

share|improve this answer
Please don't hesitate to fix the typo in the variable name. Good typing skills is 30% of the programmer's job, isn't it? – Hans Passant Jan 3 at 22:32
Good call. I didn't catch that in my copy/paste – D Stanley Jan 3 at 22:34
Hehe, being able to read past the bad ones is 10%. – Hans Passant Jan 3 at 22:38

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.