Searched refs:azCols (Results 1 – 2 of 2) sorted by relevance
| /freebsd/contrib/sqlite3/ |
| H A D | shell.c | 30083 const char *azCols[] = { in arListCommand() local 30095 shellPreparePrintf(pAr->db, &rc, &pSql, zSql, azCols[pAr->bVerbose], in arListCommand()
|
| H A D | sqlite3.c | 142109 char **azCols = 0; /* Names of result columns */ local 142144 azCols = sqlite3DbMallocRaw(db, (2*nCol+1)*sizeof(const char*)); 142145 if( azCols==0 ){ 142149 azCols[i] = (char *)sqlite3_column_name(pStmt, i); 142152 assert( azCols[i]!=0 ); 142157 azVals = &azCols[nCol]; 142167 if( xCallback(pArg, nCol, azVals, azCols) ){ 142188 sqlite3DbFree(db, azCols); 142189 azCols = 0; 142194 sqlite3DbFree(db, azCols);
|