[+/-]
        To create a MySQLDataReader, you must call
        the MySqlCommand.ExecuteReader method of the
        MySqlCommand object, rather than directly
        using a constructor.
      
        While the MySqlDataReader is in use, the
        associated MySqlConnection is busy serving
        the MySqlDataReader, and no other operations
        can be performed on the MySqlConnection other
        than closing it. This is the case until the
        MySqlDataReader.Close method of the
        MySqlDataReader is called.
      
        MySqlDataReader.IsClosed and
        MySqlDataReader.RecordsAffected are the only
        properties that you can call after the
        MySqlDataReader is closed. Though the
        RecordsAffected property may be accessed at
        any time while the MySqlDataReader exists,
        always call Close before returning the value
        of RecordsAffected to ensure an accurate
        return value.
      
        For optimal performance, MySqlDataReader
        avoids creating unnecessary objects or making unnecessary copies
        of data. As a result, multiple calls to methods such as
        MySqlDataReader.GetValue return a reference
        to the same object. Use caution if you are modifying the
        underlying value of the objects returned by methods such as
        GetValue.
      
Examples
        The following example creates a
        MySqlConnection, a
        MySqlCommand, and a
        MySqlDataReader. The example reads through
        the data, writing it out to the console. Finally, the example
        closes the MySqlDataReader, then the
        MySqlConnection.
      
Visual Basic example:
Public Sub ReadMyData(myConnString As String)
    Dim mySelectQuery As String = "SELECT OrderID, CustomerID FROM Orders"
    Dim myConnection As New MySqlConnection(myConnString)
    Dim myCommand As New MySqlCommand(mySelectQuery, myConnection)
    myConnection.Open()
    Dim myReader As MySqlDataReader
    myReader = myCommand.ExecuteReader()
    ' Always call Read before accessing data.
    While myReader.Read()
        Console.WriteLine((myReader.GetInt32(0) & ", " & myReader.GetString(1)))
    End While
    ' always call Close when done reading.
    myReader.Close()
    ' Close the connection when done with it.
    myConnection.Close()
End Sub 'ReadMyData
  
C# example:
public void ReadMyData(string myConnString) {
    string mySelectQuery = "SELECT OrderID, CustomerID FROM Orders";
    MySqlConnection myConnection = new MySqlConnection(myConnString);
    MySqlCommand myCommand = new MySqlCommand(mySelectQuery,myConnection);
    myConnection.Open();
    MySqlDataReader 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();
 }
  
          GetBytes returns the number of available
          bytes in the field. In most cases this is the exact length of
          the field. However, the number returned may be less than the
          true length of the field if GetBytes has
          already been used to obtain bytes from the field. This may be
          the case, for example, if the
          MySqlDataReader is reading a large data
          structure into a buffer. For more information, see the
          SequentialAccess setting for
          MySqlCommand.CommandBehavior.
        
          If you pass a buffer that is a null reference
          (Nothing in Visual Basic),
          GetBytes returns the length of the field in
          bytes.
        
No conversions are performed; therefore the data retrieved must already be a byte array.
          Gets the value of the specified column as a
          TimeSpan object.
        
Parameters: The zero-based column ordinal.
Returns: The value of the specified column.
          Gets the value of the specified column as a
          System.DateTime object.
        
Note. 
            MySql allows date columns to contain the value '0000-00-00'
            and datetime columns to contain the value '0000-00-00
            00:00:00'. The DateTime structure cannot contain or
            represent these values. To read a datetime value from a
            column that might contain zero values, use
            GetMySqlDateTime. The behavior of reading
            a zero datetime column using this method is defined by the
            ZeroDateTimeBehavior connection string
            option. For more information on this option, please refer to
            MySqlConnection.ConnectionString.
          
Parameters: The zero-based column ordinal.
Returns: The value of the specified column.
          Gets the value of the specified column as a
          MySql.Data.Types.MySqlDateTime object.
        
Parameters: The zero-based column ordinal.
Returns: The value of the specified column.
          Gets the value of the specified column as a
          String object.
        
Parameters: The zero-based column ordinal.
Returns: The value of the specified column.
          Gets the value of the specified column as a
          Decimal object.
        
Parameters: The zero-based column ordinal.
Returns: The value of the specified column.
Gets the value of the specified column as a double-precision floating point number.
Parameters: The zero-based column ordinal.
Returns: The value of the specified column.
Gets the value of the specified column as a single-precision floating point number.
Parameters: The zero-based column ordinal.
Returns: The value of the specified column.
Gets the value of the specified column as a globally-unique identifier (GUID).
Parameters: The zero-based column ordinal.
Returns: The value of the specified column.
Gets the value of the specified column as a 16-bit signed integer.
Parameters: The zero-based column ordinal.
Returns: The value of the specified column.
Gets the value of the specified column as a 32-bit signed integer.
Parameters: The zero-based column ordinal.
Returns: The value of the specified column.
Gets the value of the specified column as a 64-bit signed integer.
Parameters: The zero-based column ordinal.
Returns: The value of the specified column.
Gets the value of the specified column as a 16-bit unsigned integer.
Parameters: The zero-based column ordinal.
Returns: The value of the specified column.
Gets the value of the specified column as a 32-bit unsigned integer.
Parameters: The zero-based column ordinal.
Returns: The value of the specified column.
Ésta es una traducción del manual de referencia de MySQL, que puede encontrarse en dev.mysql.com. El manual de referencia original de MySQL está escrito en inglés, y esta traducción no necesariamente está tan actualizada como la versión original. Para cualquier sugerencia sobre la traducción y para señalar errores de cualquier tipo, no dude en dirigirse a mysql-es@vespito.com.
