| 1. |
Explain The Architecture Of Ado.net In Brief. |
|
Answer» AD0.NET consists of two FUNDAMENTAL components:
The data provider contains the Connection, Command, DATAREADER, and DataAdapter objects.The Connection object provides connectivity to the database. The Command object provides access to database commands to RETRIEVE and manipulate data in a database. The DataReader object retrieves data from the database in the readonly and forward-only mode. The DataAdapter object uses Command objects to execute SQL commands. The DataAdapter object loads the DataSet object with data and also updates changes that you have MADE to the data in the DataSet object back to the database. AD0.NET consists of two fundamental components: The data provider contains the Connection, Command, DataReader, and DataAdapter objects.The Connection object provides connectivity to the database. The Command object provides access to database commands to retrieve and manipulate data in a database. The DataReader object retrieves data from the database in the readonly and forward-only mode. The DataAdapter object uses Command objects to execute SQL commands. The DataAdapter object loads the DataSet object with data and also updates changes that you have made to the data in the DataSet object back to the database. |
|