IExtendedDataRecord Interface

Definition

Provides access to the column values within each row of a DbDataRecord for a DbDataReader.

public interface class IExtendedDataRecord : System::Data::IDataRecord
public interface IExtendedDataRecord : System.Data.IDataRecord
type IExtendedDataRecord = interface
    interface IDataRecord
Public Interface IExtendedDataRecord
Implements IDataRecord
Derived
Implements

Properties

DataRecordInfo

Gets DataRecordInfo for this IExtendedDataRecord.

FieldCount

Gets the number of columns in the current row.

(Inherited from IDataRecord)
Item[Int32]

Gets the column located at the specified index.

(Inherited from IDataRecord)
Item[String]

Gets the column with the specified name.

(Inherited from IDataRecord)

Methods

GetBoolean(Int32)

Gets the value of the specified column as a Boolean.

(Inherited from IDataRecord)
GetByte(Int32)

Gets the 8-bit unsigned integer value of the specified column.

(Inherited from IDataRecord)
GetBytes(Int32, Int64, Byte[], Int32, Int32)

Reads a stream of bytes from the specified column offset into the buffer as an array, starting at the given buffer offset.

(Inherited from IDataRecord)
GetChar(Int32)

Gets the character value of the specified column.

(Inherited from IDataRecord)
GetChars(Int32, Int64, Char[], Int32, Int32)

Reads a stream of characters from the specified column offset into the buffer as an array, starting at the given buffer offset.

(Inherited from IDataRecord)
GetData(Int32)

Returns an IDataReader for the specified column ordinal.

(Inherited from IDataRecord)
GetDataReader(Int32)

Returns nested readers as DbDataReader objects.

GetDataRecord(Int32)

Gets a DbDataRecord object with the specified index.

GetDataTypeName(Int32)

Gets the data type information for the specified field.

(Inherited from IDataRecord)
GetDateTime(Int32)

Gets the date and time data value of the specified field.

(Inherited from IDataRecord)
GetDecimal(Int32)

Gets the fixed-position numeric value of the specified field.

(Inherited from IDataRecord)
GetDouble(Int32)

Gets the double-precision floating point number of the specified field.

(Inherited from IDataRecord)
GetFieldType(Int32)

Gets the Type information corresponding to the type of Object that would be returned from GetValue(Int32).

(Inherited from IDataRecord)
GetFloat(Int32)

Gets the single-precision floating point number of the specified field.

(Inherited from IDataRecord)
GetGuid(Int32)

Returns the GUID value of the specified field.

(Inherited from IDataRecord)
GetInt16(Int32)

Gets the 16-bit signed integer value of the specified field.

(Inherited from IDataRecord)
GetInt32(Int32)

Gets the 32-bit signed integer value of the specified field.

(Inherited from IDataRecord)
GetInt64(Int32)

Gets the 64-bit signed integer value of the specified field.

(Inherited from IDataRecord)
GetName(Int32)

Gets the name for the field to find.

(Inherited from IDataRecord)
GetOrdinal(String)

Return the index of the named field.

(Inherited from IDataRecord)
GetString(Int32)

Gets the string value of the specified field.

(Inherited from IDataRecord)
GetValue(Int32)

Return the value of the specified field.

(Inherited from IDataRecord)
GetValues(Object[])

Populates an array of objects with the column values of the current record.

(Inherited from IDataRecord)
IsDBNull(Int32)

Return whether the specified field is set to null.

(Inherited from IDataRecord)

Applies to