DataTableReader.Read Method

Definition

Advances the DataTableReader to the next record.

C#
public override bool Read();

Returns

true if there was another row to read; otherwise false.

Exceptions

An attempt was made to read or access a column in a closed DataTableReader .

Examples

The PrintColumns procedure loops through all the rows in the DataTableReader, displaying the contents of each column in the Console window.

C#
private static void PrintColumns(DataTableReader reader)
{
    // Loop through all the rows in the DataTableReader
    while (reader.Read())
    {
        for (int i = 0; i < reader.FieldCount; i++)
        {
            Console.Write("{0} ", reader[i]);
        }
        Console.WriteLine();
    }
}

Remarks

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

Applies to

Product Versions
.NET Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0, 2.1