ADO.NET stands for ActiveX Data Objects for .NET. It refers to the suite of data access technologies used to manipulate databases. ADO.NET is part of the .NET Framework..
ADO.NET provides access to datasources starting from SQL Server / Oracle to XML based data. Developers using ADO.Net framework can write powerful, efficient, yet datasource agnostic code without a lot of effort.
One of the key innovations implemented in the ADO.Net framework is that the data access routines are kept separate from the manner in which the in memory data is represented and concieved. This concept is popularly known as the "Disconnected Data". ADO.Net also provides pwoerful features to interact with XML datasources.
Some of the key features in ADO.Net can be categorized as follows
(a) Traditional approach to access / update data through execution of commands. This concept was inherited from the ADO, the COM based data access framework.
(b) DataSet and Data Adapters: The concept of accessing data and then manipulating it in memory without the need of a connection to the datasource. DataSet is concieved as an in memory database as it is designed to use and manipulate relational data.
(c) Data Reader: This option is used to perform a fast, lightweight and forward only read of data from the underlying datasource.
(d) Retrieve Scalars: This is a quick option to execute a query or a stored procedure that returns a single value to the caller.
The ADO.NET classes are found in System.Data.dll, and are integrated with the XML classes found in System.Xml.dll.
Revision number 6, Tuesday, December 16, 2008 9:20:48 AM by senthil.christcollege@gmail.com
You must Login to comment.
|
Wed, Dec 10, 2008 3:35 AM
by acandael
|
hi guys, "DO.NET provides DataProviders to interact with data sources.", did someone forgot an 'A'?
|
|
Wed, Dec 10, 2008 5:44 AM
by DavidEvan
|
I'm sorry, I'm missing the point of writing a four line article. Is this meant to be just a terms dictionary?
|
|
Fri, Dec 12, 2008 2:42 AM
by yogeshcs2003
|
too short to be good.
|
|
Wed, Dec 17, 2008 4:50 AM
by sirdneo
|
Nice article, but too short to cover details.
|
|
Wed, Apr 22, 2009 11:22 PM
by sayre
|
Nice one. Share more. Thanks
|