What I have is an Access database that we are working on, but we need to convert it to SQLite and send it to another client while keeping the code working for the Access database as well for all others using our program.
Minimum of what I need is something that can handle connections and operations on Access and SQLite databases. Does something like this even exist. And I know the data and queries are different for these databases, I can handle that separately.
Are there any other suggestions for how to handle two separate database and this situation?
EDIT:
What I really need is something where I can do this:
public AnyDBConnection GetConnection(string connectionString)
{
//I guess somehow this needs to know the DB type (OleDB, SQLite, etc.)
return new AnyDBConnection(connectionString);
}