Pages

Men

rh

4/13/2013

What are the .Net Framework Data Providers

The .NET Framework Data Providers are components that have been explicitly designed for data manipulation and fast, forward-only, read-only access to data.
  • The Connection object provides connectivity to a data source.
  • The Command object enables access to database commands to return data, modify data, run stored procedures, and send or retrieve parameter information.
  • The DataReader provides a high-performance stream of data from the data source.
  • The DataAdapter provides the bridge between the DataSet object and the data source.
  • The DataAdapter uses Command objects to execute SQL commands at the data source to both load the DataSet with data, and reconcile changes made to the data in the DataSet back to the data source.

No comments :

Post a Comment