Mono Class Library: Overview

MySql.Data.MySqlClient.MySqlDataReader: Members

The members of MySql.Data.MySqlClient.MySqlDataReader are listed below.

See Also: Inherited members from System.Data.Common.DbDataReader

Public Properties

[read-only]
override
Depthint. Gets a value indicating the depth of nesting for the current row. This method is not supported currently and always returns 0.
[read-only]
override
FieldCountint. Gets the number of columns in the current row.
[read-only]
override
HasRowsbool. Gets a value indicating whether the MySqlDataReader contains one or more rows.
[read-only]
override
IsClosedbool. Gets a value indicating whether the data reader is closed.
[read-only]
default property
override
Item(int)object. Overloaded. Gets the value of a column in its native format. In C#, this property is the indexer for the MySqlDataReader class.
[read-only]
default property
override
Item(string)object. Gets the value of a column in its native format. [C#] In C#, this property is the indexer for the MySqlDataReader class.
[read-only]
override
RecordsAffectedint. Gets the number of rows changed, inserted, or deleted by execution of the SQL statement.

Public Methods

override
Close()
Closes the MySqlDataReader object.
override
GetBoolean(int) : bool
Gets the value of the specified column as a Boolean.
GetBoolean(string) : bool
Gets the value of the specified column as a Boolean.
override
GetByte(int) : byte
Gets the value of the specified column as a byte.
GetByte(string) : byte
Gets the value of the specified column as a byte.
override
GetBytes(int, long, byte[], int, int) : long
Reads a stream of bytes from the specified column offset into the buffer an array starting at the given buffer offset.
override
GetChar(int) : char
Gets the value of the specified column as a single character.
GetChar(string) : char
Gets the value of the specified column as a single character.
override
GetChars(int, long, char[], int, int) : long
Reads a stream of characters from the specified column offset into the buffer as an array starting at the given buffer offset.
override
GetDataTypeName(int) : string
Gets the name of the source data type.
override
GetDateTime(int) : DateTime
Documentation for this section has not yet been entered.
GetDateTime(string) : DateTime
Documentation for this section has not yet been entered.
override
GetDecimal(int) : decimal
Documentation for this section has not yet been entered.
GetDecimal(string) : decimal
Documentation for this section has not yet been entered.
override
GetDouble(int) : double
Documentation for this section has not yet been entered.
GetDouble(string) : double
Documentation for this section has not yet been entered.
override
GetEnumerator() : IEnumerator
Returns an IEnumerator that iterates through the MySql.Data.MySqlClient.MySqlDataReader.
override
GetFieldType(int) : Type
Gets the Type that is the data type of the object.
override
GetFloat(int) : float
Documentation for this section has not yet been entered.
GetFloat(string) : float
Documentation for this section has not yet been entered.
override
GetGuid(int) : Guid
Documentation for this section has not yet been entered.
GetGuid(string) : Guid
Documentation for this section has not yet been entered.
override
GetInt16(int) : short
Documentation for this section has not yet been entered.
GetInt16(string) : short
Documentation for this section has not yet been entered.
override
GetInt32(int) : int
Documentation for this section has not yet been entered.
GetInt32(string) : int
Documentation for this section has not yet been entered.
override
GetInt64(int) : long
Documentation for this section has not yet been entered.
GetInt64(string) : long
Documentation for this section has not yet been entered.
GetMySqlDateTime(int) : MySql.Data.Types.MySqlDateTime
Documentation for this section has not yet been entered.
GetMySqlDateTime(string) : MySql.Data.Types.MySqlDateTime
Documentation for this section has not yet been entered.
GetMySqlDecimal(int) : MySql.Data.Types.MySqlDecimal
Documentation for this section has not yet been entered.
GetMySqlDecimal(string) : MySql.Data.Types.MySqlDecimal
Documentation for this section has not yet been entered.
override
GetName(int) : string
Gets the name of the specified column.
override
GetOrdinal(string) : int
Gets the column ordinal, given the name of the column.
GetSByte(int) : sbyte
Gets the value of the specified column as a sbyte.
GetSByte(string) : sbyte
Gets the value of the specified column as a sbyte.
override
GetSchemaTable() : System.Data.DataTable
Returns a DataTable that describes the column metadata of the MySqlDataReader.
override
GetString(int) : string
Documentation for this section has not yet been entered.
GetString(string) : string
Documentation for this section has not yet been entered.
GetTimeSpan(int) : TimeSpan
Documentation for this section has not yet been entered.
GetTimeSpan(string) : TimeSpan
Documentation for this section has not yet been entered.
GetUInt16(int) : ushort
Documentation for this section has not yet been entered.
GetUInt16(string) : ushort
Documentation for this section has not yet been entered.
GetUInt32(int) : uint
Documentation for this section has not yet been entered.
GetUInt32(string) : uint
Documentation for this section has not yet been entered.
GetUInt64(int) : ulong
Documentation for this section has not yet been entered.
GetUInt64(string) : ulong
Documentation for this section has not yet been entered.
override
GetValue(int) : object
Gets the value of the specified column in its native format.
override
GetValues(object[]) : int
Gets all attribute columns in the collection for the current row.
override
IsDBNull(int) : bool
Gets a value indicating whether the column contains non-existent or missing values.
override
NextResult() : bool
Advances the data reader to the next result, when reading the results of batch SQL statements.
override
Read() : bool
Advances the MySqlDataReader to the next record.

Explicitly Implemented Interface Members

System.Data.IDataRecord.GetDataDocumentation for this section has not yet been entered.

Extension Methods

static
AsQueryable(this IEnumerable) : System.Linq.IQueryable
Documentation for this section has not yet been entered.
static
Cast<TResult>(this IEnumerable) : IEnumerable<TResult>
Documentation for this section has not yet been entered.
static
OfType<TResult>(this IEnumerable) : IEnumerable<TResult>
Documentation for this section has not yet been entered.