Skip to Content
Essential ADO.NET
book

Essential ADO.NET

by Bob Beauchemin
May 2002
Beginner to intermediate content levelBeginner to intermediate
560 pages
11h 36m
English
Addison-Wesley Professional
Content preview from Essential ADO.NET

8.7. Implementing the DataReader Class

DataReader classes do not have a public constructor. They must implement both the IDataReader and the IDataRecord interface. The DataReader class allows the user to read in a forward-only, row-at-a-time fashion and get typed data or generic types from the columns in each row. Listing 8-5 shows IDataReader and IDataRecord.

Listing 8-5. IDataReader and IDataRecord
 public interface IDataReader { // IDataReader methods public DataTable GetSchemaTable(); public void Close(); public bool NextResult(); public bool Read(); // IDataReader properties public int Depth public bool IsClosed public int RecordsAffected } public interface IDataRecord { // IDataRecord methods public bool GetBoolean(int i); public byte GetByte(int ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Microsoft® ADO.NET 4 Step by Step

Microsoft® ADO.NET 4 Step by Step

Tim Patrick
Professional C# 5.0 and .NET 4.5.1

Professional C# 5.0 and .NET 4.5.1

Christian Nagel, Jay Glynn, Morgan Skinner
ASP.NET 4 Unleashed

ASP.NET 4 Unleashed

Stephen Walther, Kevin Hoffman, Nate Dudek

Publisher Resources

ISBN: 0201758660Purchase book