OleDbDataAdapter vs. SqlDataAdapter

  • Thread starter Thread starter CompSci
  • Start date Start date
C

CompSci

I am wondering which DataAdapter to go with OleDbDataAdapter or
SqlDataAdapter? We are using this in a webservice using sql server 2005
and .net 1.1

Ruchir
 
SqlDataAdapter. If you are using SQL Server, you should be using the
classes in the SqlClient namespace.
 
Back
Top