Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

OleDbDataReader::Read Method ()

 

Advances the OleDbDataReader to the next record.

Namespace:   System.Data.OleDb
Assembly:  System.Data (in System.Data.dll)

public:
virtual bool Read() override

Return Value

Type: System::Boolean

true if there are more rows; otherwise, false.

The default position of the OleDbDataReader is before the first record. Therefore, you must call Read to start accessing any data.

While the OleDbDataReader is being used, the associated OleDbConnection is busy serving it until you call Close.

The following example creates an OleDbConnection, an OleDbCommand, and an OleDbDataReader. The example reads through the data, writing it out to the console. Finally, the example closes the OleDbDataReader and then the OleDbConnection.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 1.1
Return to top
Show:
© 2017 Microsoft