OleDbDataReader.Read Method
Advances the OleDbDataReader to the next record.
Namespace: System.Data.OleDb
Assembly: System.Data (in System.Data.dll)
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.
private static void ReadData(string connectionString) { string queryString = "SELECT OrderID, CustomerID FROM Orders"; using (OracleConnection connection = new OracleConnection(connectionString)) { OracleCommand command = new OracleCommand(queryString, connection); connection.Open(); OracleDataReader reader; reader = command.ExecuteReader(); // Always call Read before accessing data. while (reader.Read()) { Console.WriteLine(reader.GetInt32(0) + ", " + reader.GetString(1)); } // Always call Close when done reading. reader.Close(); } }
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.