#include <CppSQLite3.h>
Public Member Functions | |
| CppSQLite3Table () | |
| CppSQLite3Table (const CppSQLite3Table &rTable) | |
| CppSQLite3Table (char **paszResults, int nRows, int nCols) | |
| virtual | ~CppSQLite3Table () |
| CppSQLite3Table & | operator= (const CppSQLite3Table &rTable) |
| int | numFields () |
| int | numRows () |
| const char * | fieldName (int nCol) |
| const char * | fieldValue (int nField) |
| const char * | fieldValue (const char *szField) |
| int | getIntField (int nField, int nNullValue=0) |
| int | getIntField (const char *szField, int nNullValue=0) |
| double | getFloatField (int nField, double fNullValue=0.0) |
| double | getFloatField (const char *szField, double fNullValue=0.0) |
| const char * | getStringField (int nField, const char *szNullValue="") |
| const char * | getStringField (const char *szField, const char *szNullValue="") |
| bool | fieldIsNull (int nField) |
| bool | fieldIsNull (const char *szField) |
| void | setRow (int nRow) |
| void | finalize () |
Private Member Functions | |
| void | checkResults () |
Private Attributes | |
| int | mnCols |
| int | mnRows |
| int | mnCurrentRow |
| char ** | mpaszResults |
|
|
|
|
|
|
|
||||||||||||||||
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
||||||||||||
|
|
|
||||||||||||
|
|
|
||||||||||||
|
|
|
||||||||||||
|
|
|
||||||||||||
|
|
|
||||||||||||
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1.4.6-NO