dotConnect for SQL Server Documentation
Devart.Data.SqlServer Namespace / SqlDataReader Class / Read Method
Example

In This Topic
    Read Method (SqlDataReader)
    In This Topic
    Advances the SqlDataReader to the next record.
    Syntax
    'Declaration
     
    Public Overrides Function Read() As Boolean
    public override bool Read()

    Return Value

    true if there are more rows; otherwise, false.
    Remarks
    The default position of the SqlDataReader is prior to the first record. Therefore, you must call Read to begin accessing any data.

    While the SqlDataReader is in use, the associated SqlConnection is busy serving it until you call Close.

    Example
    The following example creates a SqlConnection, a SqlCommand, and a SqlDataReader. The example reads through the data, writing it out to the console. Finally, the example closes the SqlDataReader, then the SqlConnection.
    public void ReadMyData(string myConnString)
    {
      string mySelectQuery = "SELECT DeptNo, DName FROM Test.Dept";
      SqlConnection myConnection = new SqlConnection(myConnString);
      SqlCommand myCommand = new SqlCommand(mySelectQuery,myConnection);
      myConnection.Open();
      SqlDataReader myReader;
      myReader = myCommand.ExecuteReader();
      // Always call Read before accessing data.
      while (myReader.Read()) {
        Console.WriteLine(myReader.GetInt32(0) + ", " + myReader.GetString(1));
      }
      // always call Close when done reading.
      myReader.Close();
      // Close the connection when done with it.
      myConnection.Close();
    }
    Public Sub ReadMyData(myConnString As String)
      Dim mySelectQuery As String = "SELECT DeptNo, DName FROM Test.Dept"
      Dim myConnection As New SqlConnection(myConnString)
      Dim myCommand As New SqlCommand(mySelectQuery, myConnection)
      myConnection.Open()
      Dim myReader As SqlDataReader
      myReader = myCommand.ExecuteReader()
      ' Always call Read before accessing data.
      While myReader.Read()
        Console.WriteLine(myReader.GetInt32(0).ToString() + ", " _
          + myReader.GetString(1))
      End While
      ' always call Close when done reading.
      myReader.Close()
      ' Close the connection when done with it.
      myConnection.Close()
    End Sub
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also