A .NET wrapper to the SQLite database

SQLiteClient.GetRow Method (String)

Returns the first row of a queries result set

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

Parameters

query
The query to execute

Return Value

An ArrayList of the results

Remarks

Use this method to get an ArrayList of a the first row of a query.

See Also

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