| Article: |
Transparent Database Access with ADO.NET | |
| Subject: | Can't be done | |
| Date: | 2003-03-02 18:06:20 | |
| From: | anonymous2 | |
| Still can't do this like JDBC. As already pointed out, parameter binding changes between data providers. Another one that will bite you is transactions. In SqlClient, you need to bind the transaction to each command. In ODP.NET command doesn't even have the methods to do this. According to their documentation, transactions are per connection and don't work like SqlClient. If you're doing select * from table where without bound parameters or transactions, you're ok. If not, you still need to recode for each DB type. | ||
Showing messages 1 through 1 of 1.




that's mean we cant Fill in DataTable, we cant Fill DataTable with a name....etc.