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!