Searched refs:nVar (Results 1 – 3 of 3) sorted by relevance
1350 int nVar = 0; /* Number of variables in statement */ in dbPrepareAndBind() local1388 nVar = sqlite3_bind_parameter_count(pStmt); in dbPrepareAndBind()1416 nVar = sqlite3_bind_parameter_count(pStmt); in dbPrepareAndBind()1417 nByte = sizeof(SqlPreparedStmt) + nVar*sizeof(Tcl_Obj *); in dbPrepareAndBind()1439 for(i=1; i<=nVar; i++){ in dbPrepareAndBind()
19803 ynVar nVar; /* Number of '?' variables seen in the SQL so far */ member23464 ynVar nVar; /* Number of entries in aVar[] */ member86990 int nVar; /* Number of parameters */87006 nVar = pParse->nVar;87051 p->aVar = allocSpace(&x, 0, nVar*sizeof(Mem));87059 p->aVar = allocSpace(&x, p->aVar, nVar*sizeof(Mem));87066 p->nVar = 0;87071 p->nVar = (ynVar)nVar;87072 initMemArray(p->aVar, nVar, db, MEM_Null);88075 releaseMemArray(p->aVar, p->nVar);[all …]
20351 int nVar; in bind_prepared_stmt() local20356 nVar = sqlite3_bind_parameter_count(pStmt); in bind_prepared_stmt()20357 if( nVar==0 ) return; /* Nothing to do */ in bind_prepared_stmt()20367 for(i=1; i<=nVar; i++){ in bind_prepared_stmt()