Means the format of data, is it transfered in XML Format or TextFile or is there any other way of trasfering data in ADO.Net
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
ADO.NET is set of interfaces, abstract classes and classes which let database providers implement a database access in a common way for all products in the market on top of .NET Framework.
Each ADO.NET provider could be implemented in different ways, there’s no restriction about how native communication between database and data layer happens.
You can easly check how some providers do that (SQL Server, MySQL…) using a network sniffer and see packets’ contents or downloading providers’ source code – if it’s an open sourced project! -.