Searched refs:azCols (Results 1 – 2 of 2) sorted by relevance
| /freebsd/contrib/sqlite3/ |
| H A D | shell.c | 30126 const char *azCols[] = { in arListCommand() local 30138 shellPreparePrintf(pAr->db, &rc, &pSql, zSql, azCols[pAr->bVerbose], in arListCommand()
|
| H A D | sqlite3.c | 142330 char **azCols = 0; /* Names of result columns */ local 142365 azCols = sqlite3DbMallocRaw(db, (2*nCol+1)*sizeof(const char*)); 142366 if( azCols==0 ){ 142370 azCols[i] = (char *)sqlite3_column_name(pStmt, i); 142373 assert( azCols[i]!=0 ); 142378 azVals = &azCols[nCol]; 142388 if( xCallback(pArg, nCol, azVals, azCols) ){ 142409 sqlite3DbFree(db, azCols); 142410 azCols = 0; 142415 sqlite3DbFree(db, azCols);
|