Explain the namespaces in which .NET has the data functionality class.

Explain the namespaces in which .NET has the data functionality class.

System.data contains basic objects. These objects are used for accessing and storing relational data. Each of these is independent of the type of data source and the way we connect to it.

These objects are:

- DataSet
- DataTable
- DataRelation.

System.Data.OleDB objects are used to connect to a data source via an OLE-DB provider.

These objects have the same properties, methods, and events as the SqlClient equivalents.

A few of the object providers are:

- OleDbConnection
- OleDbCommand

System.Data.SqlClient objects are used to connect to a data source via the Tabular Data Stream (TDS) interface of only Microsoft SQL Server.

The intermediate layers required by an OLE-DB connection are removed in this.
This provides better performance.

System.XML contains the basic objects required to create, read, store, write, and manipulate XML documents according to W3C recommendations.
Use of data adapter
The data adapter objects connect a command objects to a Dataset object....
What are basic methods of Dataadapter?
The most commonly used methods of the DataAdapter are.....
What is Dataset object? Explain the various objects in Dataset
The DataSet object is a disconnected storage, it is used for manipulation of relational data....
Post your comment