tags:

views:

258

answers:

2

Difference and similarities between recordset in asp and datareader in asp.net

+2  A: 

If you are comparing ADO recordset to ADO.NET DataReader, then Dino Esposito has a very old article on MSDN comparing some of the differences- it also cover the DataSet.

RichardOD
+2  A: 

A DbDataReader is similar to a read-only forward-only RecordSet.

A DataTable is similar to a disconnected RecordSet.

Guffa