sl@0: /* sl@0: ** 2001 September 15 sl@0: ** sl@0: ** The author disclaims copyright to this source code. In place of sl@0: ** a legal notice, here is a blessing: sl@0: ** sl@0: ** May you do good and not evil. sl@0: ** May you find forgiveness for yourself and forgive others. sl@0: ** May you share freely, never taking more than you give. sl@0: ** sl@0: ************************************************************************* sl@0: ** This file contains the sqlite3_get_table() and sqlite3_free_table() sl@0: ** interface routines. These are just wrappers around the main sl@0: ** interface routine of sqlite3_exec(). sl@0: ** sl@0: ** These routines are in a separate files so that they will not be linked sl@0: ** if they are not used. sl@0: ** sl@0: ** $Id: table.c,v 1.36 2008/07/08 22:28:49 shane Exp $ sl@0: */ sl@0: #include "sqliteInt.h" sl@0: #include sl@0: #include sl@0: sl@0: #ifndef SQLITE_OMIT_GET_TABLE sl@0: sl@0: /* sl@0: ** This structure is used to pass data from sqlite3_get_table() through sl@0: ** to the callback function is uses to build the result. sl@0: */ sl@0: typedef struct TabResult { sl@0: char **azResult; sl@0: char *zErrMsg; sl@0: int nResult; sl@0: int nAlloc; sl@0: int nRow; sl@0: int nColumn; sl@0: int nData; sl@0: int rc; sl@0: } TabResult; sl@0: sl@0: /* sl@0: ** This routine is called once for each row in the result table. Its job sl@0: ** is to fill in the TabResult structure appropriately, allocating new sl@0: ** memory as necessary. sl@0: */ sl@0: static int sqlite3_get_table_cb(void *pArg, int nCol, char **argv, char **colv){ sl@0: TabResult *p = (TabResult*)pArg; sl@0: int need; sl@0: int i; sl@0: char *z; sl@0: sl@0: /* Make sure there is enough space in p->azResult to hold everything sl@0: ** we need to remember from this invocation of the callback. sl@0: */ sl@0: if( p->nRow==0 && argv!=0 ){ sl@0: need = nCol*2; sl@0: }else{ sl@0: need = nCol; sl@0: } sl@0: if( p->nData + need >= p->nAlloc ){ sl@0: char **azNew; sl@0: p->nAlloc = p->nAlloc*2 + need + 1; sl@0: azNew = sqlite3_realloc( p->azResult, sizeof(char*)*p->nAlloc ); sl@0: if( azNew==0 ) goto malloc_failed; sl@0: p->azResult = azNew; sl@0: } sl@0: sl@0: /* If this is the first row, then generate an extra row containing sl@0: ** the names of all columns. sl@0: */ sl@0: if( p->nRow==0 ){ sl@0: p->nColumn = nCol; sl@0: for(i=0; iazResult[p->nData++] = z; sl@0: } sl@0: }else if( p->nColumn!=nCol ){ sl@0: sqlite3_free(p->zErrMsg); sl@0: p->zErrMsg = sqlite3_mprintf( sl@0: "sqlite3_get_table() called with two or more incompatible queries" sl@0: ); sl@0: p->rc = SQLITE_ERROR; sl@0: return 1; sl@0: } sl@0: sl@0: /* Copy over the row data sl@0: */ sl@0: if( argv!=0 ){ sl@0: for(i=0; iazResult[p->nData++] = z; sl@0: } sl@0: p->nRow++; sl@0: } sl@0: return 0; sl@0: sl@0: malloc_failed: sl@0: p->rc = SQLITE_NOMEM; sl@0: return 1; sl@0: } sl@0: sl@0: /* sl@0: ** Query the database. But instead of invoking a callback for each row, sl@0: ** malloc() for space to hold the result and return the entire results sl@0: ** at the conclusion of the call. sl@0: ** sl@0: ** The result that is written to ***pazResult is held in memory obtained sl@0: ** from malloc(). But the caller cannot free this memory directly. sl@0: ** Instead, the entire table should be passed to sqlite3_free_table() when sl@0: ** the calling procedure is finished using it. sl@0: */ sl@0: int sqlite3_get_table( sl@0: sqlite3 *db, /* The database on which the SQL executes */ sl@0: const char *zSql, /* The SQL to be executed */ sl@0: char ***pazResult, /* Write the result table here */ sl@0: int *pnRow, /* Write the number of rows in the result here */ sl@0: int *pnColumn, /* Write the number of columns of result here */ sl@0: char **pzErrMsg /* Write error messages here */ sl@0: ){ sl@0: int rc; sl@0: TabResult res; sl@0: sl@0: *pazResult = 0; sl@0: if( pnColumn ) *pnColumn = 0; sl@0: if( pnRow ) *pnRow = 0; sl@0: res.zErrMsg = 0; sl@0: res.nResult = 0; sl@0: res.nRow = 0; sl@0: res.nColumn = 0; sl@0: res.nData = 1; sl@0: res.nAlloc = 20; sl@0: res.rc = SQLITE_OK; sl@0: res.azResult = sqlite3_malloc(sizeof(char*)*res.nAlloc ); sl@0: if( res.azResult==0 ){ sl@0: db->errCode = SQLITE_NOMEM; sl@0: return SQLITE_NOMEM; sl@0: } sl@0: res.azResult[0] = 0; sl@0: rc = sqlite3_exec(db, zSql, sqlite3_get_table_cb, &res, pzErrMsg); sl@0: assert( sizeof(res.azResult[0])>= sizeof(res.nData) ); sl@0: res.azResult[0] = SQLITE_INT_TO_PTR(res.nData); sl@0: if( (rc&0xff)==SQLITE_ABORT ){ sl@0: sqlite3_free_table(&res.azResult[1]); sl@0: if( res.zErrMsg ){ sl@0: if( pzErrMsg ){ sl@0: sqlite3_free(*pzErrMsg); sl@0: *pzErrMsg = sqlite3_mprintf("%s",res.zErrMsg); sl@0: } sl@0: sqlite3_free(res.zErrMsg); sl@0: } sl@0: db->errCode = res.rc; /* Assume 32-bit assignment is atomic */ sl@0: return res.rc; sl@0: } sl@0: sqlite3_free(res.zErrMsg); sl@0: if( rc!=SQLITE_OK ){ sl@0: sqlite3_free_table(&res.azResult[1]); sl@0: return rc; sl@0: } sl@0: if( res.nAlloc>res.nData ){ sl@0: char **azNew; sl@0: azNew = sqlite3_realloc( res.azResult, sizeof(char*)*(res.nData+1) ); sl@0: if( azNew==0 ){ sl@0: sqlite3_free_table(&res.azResult[1]); sl@0: db->errCode = SQLITE_NOMEM; sl@0: return SQLITE_NOMEM; sl@0: } sl@0: res.nAlloc = res.nData+1; sl@0: res.azResult = azNew; sl@0: } sl@0: *pazResult = &res.azResult[1]; sl@0: if( pnColumn ) *pnColumn = res.nColumn; sl@0: if( pnRow ) *pnRow = res.nRow; sl@0: return rc; sl@0: } sl@0: sl@0: /* sl@0: ** This routine frees the space the sqlite3_get_table() malloced. sl@0: */ sl@0: void sqlite3_free_table( sl@0: char **azResult /* Result returned from from sqlite3_get_table() */ sl@0: ){ sl@0: if( azResult ){ sl@0: int i, n; sl@0: azResult--; sl@0: assert( azResult!=0 ); sl@0: n = SQLITE_PTR_TO_INT(azResult[0]); sl@0: for(i=1; i