A .NET wrapper to the SQLite database

SQLiteClient.GetAll Method 

Returns an ArrayList of the rows of the results of the given query.

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

Parameters

query
The SQL to execute

Return Value

ArrayList of rows

See Also

SQLiteClient Class | SQLite.NET Namespace