C# 클래스 Upscaledb.Result

A UQI Result class
상속: IDisposable
파일 보기 프로젝트 열기: cruppstahl/upscaledb

공개 메소드들

메소드 설명
Close ( ) : void

Closes the Cursor

This method wraps the native uqi_result_close function.
Closes this Result and frees allocated memory.

Dispose ( ) : void

Closes the Result.

GetKey ( int row ) : byte[]

Returns the key of a specific row.

GetKeyType ( ) : int

Returns the key type.

GetRecord ( int row ) : byte[]

Returns the record of a specific row.

GetRecordType ( ) : int

Returns the record type.

GetRowCount ( ) : int

Returns the number of rows.

비공개 메소드들

메소드 설명
Result ( IntPtr handle ) : System

Constructor which creates a new Result

메소드 상세

Close() 공개 메소드

Closes the Cursor
This method wraps the native uqi_result_close function.
Closes this Result and frees allocated memory.
public Close ( ) : void
리턴 void

Dispose() 공개 메소드

Closes the Result.
public Dispose ( ) : void
리턴 void

GetKey() 공개 메소드

Returns the key of a specific row.
public GetKey ( int row ) : byte[]
row int
리턴 byte[]

GetKeyType() 공개 메소드

Returns the key type.
public GetKeyType ( ) : int
리턴 int

GetRecord() 공개 메소드

Returns the record of a specific row.
public GetRecord ( int row ) : byte[]
row int
리턴 byte[]

GetRecordType() 공개 메소드

Returns the record type.
public GetRecordType ( ) : int
리턴 int

GetRowCount() 공개 메소드

Returns the number of rows.
public GetRowCount ( ) : int
리턴 int