Hi all,
We need the application we are building to be Database-agnostic. In particular, I need it to be able work with SQL Server, Oracle and MySQL. In the future, possibly other DB Vendors will be added to the list. Of course, whatever DB is to be used will have the same schema.
In order to build a prototype to demonstrate the interface, we loaded the schema in an SQL Server DB, and then generated the DataSet and TableAdapters for that database. As the dataset was generated by a specific instance of a database, I suspect that the generated DataSet and TableAdapters are not vendor independent. Furthermore, I am not even sure whether they can be used for another SQL Server DB instance.
My question is this: Is there a way to use the same auto-generated DataSet and TableAdapters with different databases (and possibly vendors)?
Cheers,
Markos