Tagged Questions

0
votes
3answers
156 views

.Net: how to create vendor independent Dataset, Tableadapters, bindings (DB decided at runtime)

I have a C# Windows Forms application, whose prototype was created on SQL Server (strongly-typed dataset). In its final version, the application must be able to work over SQL Server, MySQL or Oracle. …
1
vote
2answers
82 views

.net : Are DataSet and TableAdapters agnostic of database and vendor?

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 …
3
votes
6answers
435 views

IdbConnection vs. SqlConnection

When I write an app, I use the System.Data interfaces (IDbConnection, IDbCommand, IDataReader, IDbDataParameter, etc...). I do this to reduce vendor dependencies. Unless, I'm doing a simple test …