Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/sqlite3/
Dshell.c20090 char **azVals = &azCols[nCol]; /* Results */ in exec_prepared_stmt() local
20091 int *aiTypes = (int *)&azVals[nCol]; /* Result types */ in exec_prepared_stmt()
20107 azVals[i] = ""; in exec_prepared_stmt()
20109 azVals[i] = (char*)sqlite3_column_text(pStmt, i); in exec_prepared_stmt()
20111 if( !azVals[i] && (aiTypes[i]!=SQLITE_NULL) ){ in exec_prepared_stmt()
20120 if( shell_callback(pArg, nCol, azVals, azCols, aiTypes) ){ in exec_prepared_stmt()
Dsqlite3.c134809 char **azVals = 0;
134847 azVals = &azCols[nCol];
134849 azVals[i] = (char *)sqlite3_column_text(pStmt, i);
134850 if( !azVals[i] && sqlite3_column_type(pStmt, i)!=SQLITE_NULL ){
134855 azVals[i] = 0;
134857 if( xCallback(pArg, nCol, azVals, azCols) ){
/freebsd-12-stable/crypto/heimdal/lib/sqlite/
Dsqlite3.c88776 char **azVals = 0;
88815 azVals = &azCols[nCol];
88817 azVals[i] = (char *)sqlite3_column_text(pStmt, i);
88818 if( !azVals[i] && sqlite3_column_type(pStmt, i)!=SQLITE_NULL ){
88824 if( xCallback(pArg, nCol, azVals, azCols) ){