A .NET wrapper to the SQLite database

SQLiteResultSet.GetColumn Method (Int32)

Returns an ArrayList of a column of data in the result set.

[Visual Basic]
Overloads Public Function GetColumn( _
   ByVal columnIndex As Integer _
) As ArrayList
[C#]
public ArrayList GetColumn(
   int columnIndex
);

Parameters

columnIndex
The column to retrieve

Return Value

An ArrayList of the column data

Remarks

The column index is zero based. A quicker way of getting a single column of data is the GetColumn method. Returns an empty ArrayList if the column index is not valid.

See Also

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