Method | Description | |
---|---|---|
Close ( ) : void |
Closes the T:System.Data.IDataReader Object.
|
|
GetBytes ( int i, long fieldOffset, byte buffer, int bufferoffset, int length ) : long |
Reads a stream of bytes from the specified column offset into the buffer as an array, starting at the given buffer offset.
|
|
GetChars ( int i, long fieldoffset, char buffer, int bufferoffset, int length ) : long |
Reads a stream of characters from the specified column offset into the buffer as an array, starting at the given buffer offset.
|
|
GetCurrentObject ( ) : |
Gets the current row as a memory object rather than piecemeal.
|
|
GetData ( int i ) : IDataReader |
Returns an T:System.Data.IDataReader for the specified column ordinal.
|
|
GetFieldType ( int i ) : |
Gets the T:System.Type information corresponding to the type of T:System.Object that would be returned from M:System.Data.IDataRecord.GetValue(System.Int32).
|
|
GetGuid ( int i ) : System.Guid |
Returns the GUID value of the specified field.
|
|
GetName ( int i ) : string |
Gets the name for the field to find.
|
|
GetSchemaTable ( ) : |
Returns a T:System.Data.DataTable that describes the column metadata of the T:System.Data.IDataReader.
|
|
GetValues ( object values ) : int |
Gets all the attribute fields in the collection for the current record.
|
|
MemoryDataReader ( |
Create the data reader.
|
|
NextResult ( ) : bool |
Advances the data reader to the next result, when reading the results of batch SQL statements.
|
Method | Description | |
---|---|---|
ReadRawRow ( ) : IList |
Returns the "row" from the data source, which we will then determine whether it matches the criteria, needs to be sorted, etc.
|
Method | Description | |
---|---|---|
GetConfig ( ClassMapping mapping ) : DataReaderConfig |
public GetBytes ( int i, long fieldOffset, byte buffer, int bufferoffset, int length ) : long | ||
i | int | The zero-based column ordinal. |
fieldOffset | long | The index within the field from which to start the read operation. |
buffer | byte | The buffer into which to read the stream of bytes. |
bufferoffset | int | The index for |
length | int | The number of bytes to read. |
return | long |
public GetChars ( int i, long fieldoffset, char buffer, int bufferoffset, int length ) : long | ||
i | int | The zero-based column ordinal. |
fieldoffset | long | The index within the row from which to start the read operation. |
buffer | char | The buffer into which to read the stream of bytes. |
bufferoffset | int | The index for |
length | int | The number of bytes to read. |
return | long |
public GetData ( int i ) : IDataReader | ||
i | int | The index of the field to find. |
return | IDataReader |
public GetFieldType ( int i ) : |
||
i | int | The index of the field to find. |
return |
public GetGuid ( int i ) : System.Guid | ||
i | int | The index of the field to find. |
return | System.Guid |
public GetName ( int i ) : string | ||
i | int | The index of the field to find. |
return | string |
public GetValues ( object values ) : int | ||
values | object | An array of |
return | int |
public MemoryDataReader ( |
||
layer | Layer creating it. | |
mapping | ClassMapping | Mapping for the class stored in the data store. |
criteria | Criteria for which instances you want. | |
objects | IEnumerator |
Iterator over the list of objects. |
return | System |