Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dshell.c24636 char **azVals = &azCols[nCol]; /* Results */ in exec_prepared_stmt() local
24637 int *aiTypes = (int *)&azVals[nCol]; /* Result types */ in exec_prepared_stmt()
24653 azVals[i] = ""; in exec_prepared_stmt()
24655 azVals[i] = (char*)sqlite3_column_text(pStmt, i); in exec_prepared_stmt()
24657 if( !azVals[i] && (aiTypes[i]!=SQLITE_NULL) ){ in exec_prepared_stmt()
24666 if( shell_callback(pArg, nCol, azVals, azCols, aiTypes) ){ in exec_prepared_stmt()
H A Dsqlite3.c138257 char **azVals = 0;
138295 azVals = &azCols[nCol];
138297 azVals[i] = (char *)sqlite3_column_text(pStmt, i);
138298 if( !azVals[i] && sqlite3_column_type(pStmt, i)!=SQLITE_NULL ){
138303 azVals[i] = 0;
138305 if( xCallback(pArg, nCol, azVals, azCols) ){