A .NET wrapper to the SQLite database

SQLiteResultSet.GetColumn Method (String)

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

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

Parameters

columnName
The name of the column to retrieve

Return Value

An ArrayList of the column data

Remarks

Returns an empty ArrayList if the given column name is not defined.

See Also

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