Home
last modified time | relevance | path

Searched refs:azCols (Results 1 – 2 of 2) sorted by relevance

/src/contrib/sqlite3/
H A Dshell.c24635 char **azCols = (char **)pData; /* Names of result columns */ in exec_prepared_stmt() local
24636 char **azVals = &azCols[nCol]; /* Results */ in exec_prepared_stmt()
24642 azCols[i] = (char *)sqlite3_column_name(pStmt, i); in exec_prepared_stmt()
24666 if( shell_callback(pArg, nCol, azVals, azCols, aiTypes) ){ in exec_prepared_stmt()
27998 const char *azCols[] = { in arListCommand() local
28010 shellPreparePrintf(pAr->db, &rc, &pSql, zSql, azCols[pAr->bVerbose], in arListCommand()
H A Dsqlite3.c138247 char **azCols = 0; /* Names of result columns */
138282 azCols = sqlite3DbMallocRaw(db, (2*nCol+1)*sizeof(const char*));
138283 if( azCols==0 ){
138287 azCols[i] = (char *)sqlite3_column_name(pStmt, i);
138290 assert( azCols[i]!=0 );
138295 azVals = &azCols[nCol];
138305 if( xCallback(pArg, nCol, azVals, azCols) ){
138326 sqlite3DbFree(db, azCols);
138327 azCols = 0;
138332 sqlite3DbFree(db, azCols);