Skip to main content

ResultSet Class

Namespace: GHIElectronics.TinyCLR.Data.SQLite · Assembly: GHIElectronics.TinyCLR.Data.SQLite

Result of a SQL SELECT — rows × columns plus column-name metadata. Index by this[row] for an ArrayList of cells in that row, or this[row, column] for an individual cell.

public class ResultSet

Properties

RowCount

public int RowCount { get; }

Number of rows displayed. (inherited)

ColumnCount

public int ColumnCount { get; }

No description available.

ColumnNames

public string[] ColumnNames { get; }

No description available.

Data

public ArrayList Data { get; }

The payload buffer. Up to 64 bytes for CAN-FD, 8 for classic CAN. (inherited)

row]

public ArrayList this[int row] { get; }

No description available.

column]

public object this[int row, int column] { get; }

No description available.