public interface Row
The Row interface is returned by Cursor.getRow() to provide
access to the content of an individual row.
There is more thorough coverage of the Database API here.
The sample code below presents a Database Explorer tool that allows executing arbitrary SQL and
viewing the tabular results:

| Modifier and Type | Method and Description |
|---|---|
byte[] |
getBlob(int index)
Gets column value by index.
|
double |
getDouble(int index)
Gets column value by index.
|
float |
getFloat(int index)
Gets column value by index.
|
int |
getInteger(int index)
Gets column value by index.
|
long |
getLong(int index)
Gets column value by index.
|
short |
getShort(int index)
Gets column value by index.
|
String |
getString(int index)
Gets column value by index.
|
byte[] getBlob(int index)
throws IOException
index - starts with zeroIOExceptiondouble getDouble(int index)
throws IOException
index - starts with zeroIOExceptionfloat getFloat(int index)
throws IOException
index - starts with zeroIOExceptionint getInteger(int index)
throws IOException
index - starts with zeroIOExceptionlong getLong(int index)
throws IOException
index - starts with zeroIOExceptionshort getShort(int index)
throws IOException
index - starts with zeroIOExceptionString getString(int index) throws IOException
index - starts with zeroIOException