I found this online: http://www.connectionstrings.com/?carrier=access2007 Looks like you'll just have to manually type in your connection string, you won't be able to use the connection string builder for Access. Changing the provider from Jet to that ACE provider should do the trick:Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:\myFolder\myAccess2007file.accdb;Persist Security Info=False;
And if you've set the password on your accdb file, you'll need to use the connection string like this:
Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:\myFolder\myAccess2007file.accdb;Jet OLEDB:database Password=MyDbPassword;
Once you change the conn string, everything will be just plain OLE DB, so the BOMapper and your app should work like normal (unless Microsoft decided to change the way that the GetSchema() returns for Access 2007...).