May 2002
Beginner to intermediate
560 pages
11h 36m
English
You've used the ADO disconnected Recordset class as a universal data representation mechanism in the classic ADO API. In addition to offline manipulation of resultsets and cross-component marshaling, you've also used it to populate databound controls. Let's compare this to the equivalent functionality in ADO.NET.
The disconnected model in ADO.NET is not hidden behind the facade of a client-side cursor but instead is exposed directly through the DataSet class. ADO's client cursor Recordset has quite a few things in common with a single DataTable in an ADO.NET DataSet. Both the DataSet/DataTable and the Recordset are createable classes that can expose tabular data. ADO programmers ...