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

I'm trying to access an MS Access file by using an ConnectionStringBuilder and a dataContext. I've been convinced that this is a good approach of programming. However, I do not succeed in creating a connection. There is no problem with my MS Access file as far as I know since I can create a connection using the Server Explorer (I copied this path so it's not wrong in the code below).

OleDbConnectionStringBuilder builder = new OleDbConnectionStringBuilder();
builder["Provider"] = "Microsoft.ACE.OLEDB.12.0";
builder["Data Source"] = "filepath_including_filename";

DataContext db = new DataContext(builder.ConnectionString);

Table<Recepts> recepten = db.GetTable<Recepts>();

I get the error Provider not found. If I comment out the codeline that assigns the provider, I get another error stating it cannot access the DB: A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: SQL Network Interfaces, error: 26 - Error Locating Server/Instance Specified)

Thanks for all the help!

share|improve this question
The ACE provider is available separate 32 bit and 64 bit versions. Your Dot.Net code must run in the same bit mode as your ACE provider version. If the bit modes don't match, you'll get the "provider not found" error message. – HansUp Jan 13 at 16:08

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.