Wednesday 19 August 2015

What is difference between ADO and ADO.Net

ADO :
  • ADO is created using COM Technology.(COM stands for component object model)
  • In ADO we can store only one table.
  • In ADO we can't generate relations.
  • In ADO we can't generate sql statements.
  • ADO is connection-Oriented.
ADO.Net :
  • ADO.Net is implemented by using .Net Framework technology.
  • ADO.Net we can store multiple tables in the DataSet.
  • In ADO.Net we can generate relations.
  • In ADO.Net we can generate sql statements.
  • ADO.Net is connection less.

No comments:

Post a Comment