Home
last modified time | relevance | path

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

/netbsd/src/external/public-domain/sqlite/dist/
Dshell.c20851 char **azVals = &azCols[nCol]; /* Results */ in exec_prepared_stmt() local
20852 int *aiTypes = (int *)&azVals[nCol]; /* Result types */ in exec_prepared_stmt()
20868 azVals[i] = ""; in exec_prepared_stmt()
20870 azVals[i] = (char*)sqlite3_column_text(pStmt, i); in exec_prepared_stmt()
20872 if( !azVals[i] && (aiTypes[i]!=SQLITE_NULL) ){ in exec_prepared_stmt()
20881 if( shell_callback(pArg, nCol, azVals, azCols, aiTypes) ){ in exec_prepared_stmt()
Dsqlite3.c135358 char **azVals = 0;
135396 azVals = &azCols[nCol];
135398 azVals[i] = (char *)sqlite3_column_text(pStmt, i);
135399 if( !azVals[i] && sqlite3_column_type(pStmt, i)!=SQLITE_NULL ){
135404 azVals[i] = 0;
135406 if( xCallback(pArg, nCol, azVals, azCols) ){