tags:

views:

369

answers:

1

Is there any API available similar to JDBC batch update [PreparedStatement.addBatch() and PreparedStatement.executeBatch() ]?

I have seen the DataAdapter. However I think it is using DataTable; is it similar to JDBC PreparedStatement?

A: 

There is alot of good tutorials on asp.net/Learn/data-access: batched. They use Strongly Typed DataSet, Transactions, Commits and Rollbacks. Worth Looking.

Maxime