Searched refs:azCols (Results 1 – 2 of 2) sorted by relevance
/freebsd/contrib/sqlite3/ |
H A D | shell.c | 22113 char **azCols = (char **)pData; /* Names of result columns */ in exec_prepared_stmt() local 22114 char **azVals = &azCols[nCol]; /* Results */ in exec_prepared_stmt() 22120 azCols[i] = (char *)sqlite3_column_name(pStmt, i); in exec_prepared_stmt() 22144 if( shell_callback(pArg, nCol, azVals, azCols, aiTypes) ){ in exec_prepared_stmt() 25286 const char *azCols[] = { in arListCommand() local 25298 shellPreparePrintf(pAr->db, &rc, &pSql, zSql, azCols[pAr->bVerbose], in arListCommand()
|
H A D | sqlite3.c | 136309 char **azCols = 0; /* Names of result columns */ 136344 azCols = sqlite3DbMallocRaw(db, (2*nCol+1)*sizeof(const char*)); 136345 if( azCols==0 ){ 136349 azCols[i] = (char *)sqlite3_column_name(pStmt, i); 136352 assert( azCols[i]!=0 ); 136357 azVals = &azCols[nCol]; 136367 if( xCallback(pArg, nCol, azVals, azCols) ){ 136388 sqlite3DbFree(db, azCols); 136389 azCols = 0; 136394 sqlite3DbFree(db, azCols);
|