IDataReader::Read Method ()
Advances the IDataReader to the next record.
Assembly: System.Data (in System.Data.dll)
The default position of the IDataReader is prior to the first record. Therefore you must call Read to begin accessing any data.
While the data reader is in use, the associated connection is busy serving the IDataReader. This is the case until Close is called.
The following example creates instances of three derived classes OleDbConnection, an OleDbCommand, and an OleDbDataReader. The example reads through the data, writing it out to the console. Finally, the example closes the OleDbDataReader, then the OleDbConnection.
Available since 1.1