Searched refs:nVar (Results 1 – 3 of 3) sorted by relevance
1392 int nVar = 0; /* Number of variables in statement */ in dbPrepareAndBind() local1430 nVar = sqlite3_bind_parameter_count(pStmt); in dbPrepareAndBind()1458 nVar = sqlite3_bind_parameter_count(pStmt); in dbPrepareAndBind()1459 nByte = sizeof(SqlPreparedStmt) + nVar*sizeof(Tcl_Obj *); in dbPrepareAndBind()1481 for(i=1; i<=nVar; i++){ in dbPrepareAndBind()
20343 ynVar nVar; /* Number of '?' variables seen in the SQL so far */ member24043 ynVar nVar; /* Number of entries in aVar[] */ member88543 int nVar; /* Number of parameters */ local88560 nVar = pParse->nVar;88605 p->aVar = allocSpace(&x, 0, nVar*sizeof(Mem));88613 p->aVar = allocSpace(&x, p->aVar, nVar*sizeof(Mem));88623 p->nVar = 0;88628 p->nVar = (ynVar)nVar;88629 initMemArray(p->aVar, nVar, db, MEM_Null);89632 releaseMemArray(p->aVar, p->nVar);[all …]
24063 int nVar; in bind_prepared_stmt() local24068 nVar = sqlite3_bind_parameter_count(pStmt); in bind_prepared_stmt()24069 if( nVar==0 ) return; /* Nothing to do */ in bind_prepared_stmt()24079 for(i=1; i<=nVar; i++){ in bind_prepared_stmt()