C# 클래스 MySql.Data.MySqlClient.ResultSet

파일 보기 프로젝트 열기: elevate/mysqlconnector-.net 1 사용 예제들

공개 메소드들

메소드 설명
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

비공개 메소드들

메소드 설명
GetNextRow ( ) : bool
LoadColumns ( int numCols ) : void

Loads the column metadata for the current resultset

ReadColumnData ( bool outputParms ) : void

메소드 상세

Close() 공개 메소드

Closes the current resultset, dumping any data still on the wire
public Close ( ) : void
리턴 void

FieldRead() 공개 메소드

public FieldRead ( int index ) : bool
index int
리턴 bool

GetOrdinal() 공개 메소드

return the ordinal for the given column name
public GetOrdinal ( string name ) : int
name string
리턴 int

NextRow() 공개 메소드

public NextRow ( CommandBehavior behavior ) : bool
behavior CommandBehavior
리턴 bool

ResultSet() 공개 메소드

public ResultSet ( Driver d, int statementId, int numCols ) : System
d Driver
statementId int
numCols int
리턴 System

ResultSet() 공개 메소드

public ResultSet ( int affectedRows, int insertedId ) : System
affectedRows int
insertedId int
리턴 System

SetValueObject() 공개 메소드

public SetValueObject ( int i, IMySqlValue valueObject ) : void
i int
valueObject IMySqlValue
리턴 void

this() 공개 메소드

Retrieve the value as the given column index
public this ( int index ) : IMySqlValue
index int The column value to retrieve
리턴 IMySqlValue