C# Class MySql.Data.MySqlClient.ResultSet

Afficher le fichier Open project: elevate/mysqlconnector-.net Class Usage Examples

Méthodes publiques

Méthode Description
Close ( ) : void

Closes the current resultset, dumping any data still on the wire

FieldRead ( int index ) : bool
GetOrdinal ( string name ) : int

return the ordinal for the given column name

NextRow ( CommandBehavior behavior ) : bool
ResultSet ( Driver d, int statementId, int numCols ) : System
ResultSet ( int affectedRows, int insertedId ) : System
SetValueObject ( int i, IMySqlValue valueObject ) : void
this ( int index ) : IMySqlValue

Retrieve the value as the given column index

Private Methods

Méthode Description
GetNextRow ( ) : bool
LoadColumns ( int numCols ) : void

Loads the column metadata for the current resultset

ReadColumnData ( bool outputParms ) : void

Method Details

Close() public méthode

Closes the current resultset, dumping any data still on the wire
public Close ( ) : void
Résultat void

FieldRead() public méthode

public FieldRead ( int index ) : bool
index int
Résultat bool

GetOrdinal() public méthode

return the ordinal for the given column name
public GetOrdinal ( string name ) : int
name string
Résultat int

NextRow() public méthode

public NextRow ( CommandBehavior behavior ) : bool
behavior CommandBehavior
Résultat bool

ResultSet() public méthode

public ResultSet ( Driver d, int statementId, int numCols ) : System
d Driver
statementId int
numCols int
Résultat System

ResultSet() public méthode

public ResultSet ( int affectedRows, int insertedId ) : System
affectedRows int
insertedId int
Résultat System

SetValueObject() public méthode

public SetValueObject ( int i, IMySqlValue valueObject ) : void
i int
valueObject IMySqlValue
Résultat void

this() public méthode

Retrieve the value as the given column index
public this ( int index ) : IMySqlValue
index int The column value to retrieve
Résultat IMySqlValue