Do you know which module in VB.net will allow me to connect to a file (mdf/mdb) and SQL Server (not at the same time but to change in runtime).
Or do you know of two modules which have the same API?
I'm building software which I will wont work both locally and on a server. But I don't want to have to go changing all of my code just because I'm using a different modules. I know VB.net, but I've never used databases.
There's so many different database connectors its confusing!
Thank you, answers and comments are much appreciated!

.mdfIS a SQL Server data file - access it throughSystem.Data.SqlClient..mdbis MS Access - access it throughSystem.Data.OleDbClient. Both approaches use ADO.NET - the database access layer technology in .NET – marc_s May 18 '12 at 16:50