Home
last modified time | relevance | path

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

/netbsd-src/external/public-domain/sqlite/dist/
H A Dshell.c20850 char **azCols = (char **)pData; /* Names of result columns */ in exec_prepared_stmt() local
20851 char **azVals = &azCols[nCol]; /* Results */ in exec_prepared_stmt()
20857 azCols[i] = (char *)sqlite3_column_name(pStmt, i); in exec_prepared_stmt()
20881 if( shell_callback(pArg, nCol, azVals, azCols, aiTypes) ){ in exec_prepared_stmt()
24022 const char *azCols[] = { in arListCommand() local
24034 shellPreparePrintf(pAr->db, &rc, &pSql, zSql, azCols[pAr->bVerbose], in arListCommand()
H A Dsqlite3.c135348 char **azCols = 0; /* Names of result columns */
135383 azCols = sqlite3DbMallocRaw(db, (2*nCol+1)*sizeof(const char*));
135384 if( azCols==0 ){
135388 azCols[i] = (char *)sqlite3_column_name(pStmt, i);
135391 assert( azCols[i]!=0 );
135396 azVals = &azCols[nCol];
135406 if( xCallback(pArg, nCol, azVals, azCols) ){
135427 sqlite3DbFree(db, azCols);
135428 azCols = 0;
135433 sqlite3DbFree(db, azCols);