|
The .NET data provider layer resides between the application and the database.
Its task is to take care of all their
interactions................
One of the ways to sort and filter data is to use the ‘select’ method. However,
our focus is on the DataView object..............
DataViewManager can be used to manage view settings of the tables in a DataSet.
A DataViewManager is best suited for views...............
Also read
Data Provider provides objects through which functionalities like opening and
closing connection, retrieving and updating data can be
availed.............
This method executes the SelectCommand to fill the DataSet object with data from
the data source...........
‘NewRow’ method is provided by the ‘Datatable’ to add new row to
it..............
DataSet object can contain multiple rowsets from the same data source as well as
from the relationships between them.......
A connection pool is created when a connection is opened the first
time........
|