Searched refs:azVals (Results 1 – 2 of 2) sorted by relevance
/freebsd/contrib/sqlite3/ |
H A D | shell.c | 22114 char **azVals = &azCols[nCol]; /* Results */ in exec_prepared_stmt() local 22115 int *aiTypes = (int *)&azVals[nCol]; /* Result types */ in exec_prepared_stmt() 22131 azVals[i] = ""; in exec_prepared_stmt() 22133 azVals[i] = (char*)sqlite3_column_text(pStmt, i); in exec_prepared_stmt() 22135 if( !azVals[i] && (aiTypes[i]!=SQLITE_NULL) ){ in exec_prepared_stmt() 22144 if( shell_callback(pArg, nCol, azVals, azCols, aiTypes) ){ in exec_prepared_stmt()
|
H A D | sqlite3.c | 136319 char **azVals = 0; 136357 azVals = &azCols[nCol]; 136359 azVals[i] = (char *)sqlite3_column_text(pStmt, i); 136360 if( !azVals[i] && sqlite3_column_type(pStmt, i)!=SQLITE_NULL ){ 136365 azVals[i] = 0; 136367 if( xCallback(pArg, nCol, azVals, azCols) ){
|