Could you explain me some of the main differences between Connection-oriented access and connectionless access in ADO.NET?

Technology CommunityCategory: ADO.NETCould you explain me some of the main differences between Connection-oriented access and connectionless access in ADO.NET?
VietMX Staff asked 3 years ago
  • Connection Oriented means : connection is exist throw out your process. Example : using DataReader in Ado.Net you can get data as connection oriented database connection type.
  • Connection Less means : Your connection is not available throw out your whole process. Example: using DataAdapter in Ado.Net you can get data as connection less database connection type.