MySqlDataReader Properties

MySQL Connector.Net

Collapse image Expand Image Copy image CopyHover image

The MySqlDataReader type exposes the following members.

Properties

  Name Description
Public property Depth
Gets a value indicating the depth of nesting for the current row. This method is not supported currently and always returns 0.
(Overrides DbDataReader..::..Depth.)
Public property FieldCount
Gets the number of columns in the current row.
(Overrides DbDataReader..::..FieldCount.)
Public property HasRows
Gets a value indicating whether the MySqlDataReader contains one or more rows.
(Overrides DbDataReader..::..HasRows.)
Public property IsClosed
Gets a value indicating whether the data reader is closed.
(Overrides DbDataReader..::..IsClosed.)
Public property Item[([( Int32])])
Overloaded. Gets the value of a column in its native format. In C#, this property is the indexer for the MySqlDataReader class.
(Overrides DbDataReader..::..Item[([( Int32])]) .)
Public property Item[([( String])])
Gets the value of a column in its native format. [C#] In C#, this property is the indexer for the MySqlDataReader class.
(Overrides DbDataReader..::..Item[([( String])]) .)
Public property RecordsAffected
Gets the number of rows changed, inserted, or deleted by execution of the SQL statement.
(Overrides DbDataReader..::..RecordsAffected.)
Public property VisibleFieldCount
Gets the number of fields in the DbDataReader that are not hidden.
(Inherited from DbDataReader.)

See Also