Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dshell.c22114 char **azCols = (char **)pData; /* Names of result columns */ in exec_prepared_stmt() local
22115 char **azVals = &azCols[nCol]; /* Results */ in exec_prepared_stmt()
22121 azCols[i] = (char *)sqlite3_column_name(pStmt, i); in exec_prepared_stmt()
22145 if( shell_callback(pArg, nCol, azVals, azCols, aiTypes) ){ in exec_prepared_stmt()
25287 const char *azCols[] = { in arListCommand() local
25299 shellPreparePrintf(pAr->db, &rc, &pSql, zSql, azCols[pAr->bVerbose], in arListCommand()
H A Dsqlite3.c136300 char **azCols = 0; /* Names of result columns */
136335 azCols = sqlite3DbMallocRaw(db, (2*nCol+1)*sizeof(const char*));
136336 if( azCols==0 ){
136340 azCols[i] = (char *)sqlite3_column_name(pStmt, i);
136343 assert( azCols[i]!=0 );
136348 azVals = &azCols[nCol];
136358 if( xCallback(pArg, nCol, azVals, azCols) ){
136379 sqlite3DbFree(db, azCols);
136380 azCols = 0;
136385 sqlite3DbFree(db, azCols);