A .NET wrapper to the SQLite database

SQLiteClient.GetRow Method (String, Int32)

Returns the specified row of a queries result set

[Visual Basic]
Overloads Public Function GetRow( _
   ByVal query As String, _
   ByVal row As Integer _
) As ArrayList
[C#]
public ArrayList GetRow(
   string query,
   int row
);

Parameters

query
The query to execute
row
The row to retrieve

Return Value

An ArrayList of the results

Remarks

Use this method to get an ArrayList of a particular row of a query. The row is a zero based index.

See Also

SQLiteClient Class | SQLite.NET Namespace | SQLiteClient.GetRow Overload List