Method GetRow
GetRow(string)
Gets a row from the table.
public object[] GetRow(string row)
Parameters
row
stringThe primary key of the row.
Returns
- object[]
The row data.
Remarks
This method acts as an alternative for and wraps the corresponding indexer defined in this class.
GetRow(int)
Gets a row from the table.
public object[] GetRow(int row)
Parameters
row
intThe 0-based index of the row.
Returns
- object[]
The row data.
Remarks
This method acts as an alternative for and wraps the corresponding indexer defined in this class.