Internal structure for managing driver's sqlite3_get_table() implementation. More...
Data Fields | |
char ** | resarr |
result array | |
char * | errmsg |
error message or NULL | |
sqlite3_stmt * | stmt |
SQLite3 statement pointer. | |
STMT * | s |
Driver statement pointer. | |
int | nalloc |
alloc'ed size of result array | |
int | nrow |
number of rows in result array | |
int | ncol |
number of columns in result array | |
PTRDIFF_T | ndata |
index into result array | |
int | rc |
SQLite return code. | |
Internal structure for managing driver's sqlite3_get_table() implementation.
Definition at line 1374 of file sqlite3odbc.c.
char* tblres::errmsg |
error message or NULL
Definition at line 1376 of file sqlite3odbc.c.
Referenced by drvgettable(), and drvgettable_row().
int tblres::nalloc |
alloc'ed size of result array
Definition at line 1379 of file sqlite3odbc.c.
Referenced by drvgettable(), and drvgettable_row().
int tblres::ncol |
number of columns in result array
Definition at line 1381 of file sqlite3odbc.c.
Referenced by drvgettable(), and drvgettable_row().
PTRDIFF_T tblres::ndata |
index into result array
Definition at line 1382 of file sqlite3odbc.c.
Referenced by drvgettable(), and drvgettable_row().
int tblres::nrow |
number of rows in result array
Definition at line 1380 of file sqlite3odbc.c.
Referenced by drvgettable(), and drvgettable_row().
int tblres::rc |
SQLite return code.
Definition at line 1383 of file sqlite3odbc.c.
Referenced by drvgettable(), and drvgettable_row().
char** tblres::resarr |
result array
Definition at line 1375 of file sqlite3odbc.c.
Referenced by drvgettable(), and drvgettable_row().
STMT* tblres::s |
Driver statement pointer.
Definition at line 1378 of file sqlite3odbc.c.
Referenced by drvgettable(), and drvgettable_row().
sqlite3_stmt* tblres::stmt |
SQLite3 statement pointer.
Definition at line 1377 of file sqlite3odbc.c.
Referenced by drvgettable(), and drvgettable_row().