C# Класс Upscaledb.Result

A UQI Result class
Наследование: IDisposable
Показать файл Открыть проект

Открытые методы

Метод Описание
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