A .NET wrapper to the SQLite database

SQLiteResultSet.GetField Method 

Gets a particular field of a particular row from the result set.

[Visual Basic]
Public Function GetField( _
   ByVal rowIndex As Integer, _
   ByVal columnIndex As Integer _
) As String
[C#]
public string GetField(
   int rowIndex,
   int columnIndex
);

Parameters

rowIndex
The row index of the field
columnIndex
The column index of the field

Return Value

A string of the field data

Remarks

Both the row and column indexes are zero based.

See Also

SQLiteResultSet Class | SQLite.NET Namespace