A .NET wrapper to the SQLite database

SQLiteClient.GetColumn Method (String, Int32)

Returns the specified column of a queries result set

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

Parameters

query
The query to execute
column
The column to retrieve

Return Value

An ArrayList of the results

Remarks

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

See Also

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