I want my application to be able to work with multiple db vendors. In other words, depending on the DB infrastructure of the client, the db schema will be deployed on one of Oracle, MySQL, SQL Server. I am between using ODBC and OleDB, and the following key requirements that must be taken into account for the selection:
- the DB schema must be created from within the application (I was told that ODBC may be problematic in this case, is this true?)
it is strongly desirable that the end users are not required to install any additional software (i.e. Oracle Instant Client etc). So, the driver should be preferably either:
- already bundled with Windows. Does Windows have a generic version of ODBC / OleDB?
- be able to be bundled in a way with the application. I.E. in Java, I can bundle the JDBC driver for MySQL as a .jar file with my application. Can this be done by including a .dll file?
it is strongly desirable that the end users are not required to make any external configuration, such as creating ODBC datasources
Cheers!