Searched refs:nVar (Results 1 – 3 of 3) sorted by relevance
1407 int nVar = 0; /* Number of variables in statement */ in dbPrepareAndBind() local1445 nVar = sqlite3_bind_parameter_count(pStmt); in dbPrepareAndBind()1473 nVar = sqlite3_bind_parameter_count(pStmt); in dbPrepareAndBind()1474 nByte = sizeof(SqlPreparedStmt) + nVar*sizeof(Tcl_Obj *); in dbPrepareAndBind()1496 for(i=1; i<=nVar; i++){ in dbPrepareAndBind()
20987 ynVar nVar; /* Number of '?' variables seen in the SQL so far */ member24734 ynVar nVar; /* Number of entries in aVar[] */ member90526 int nVar; /* Number of parameters */ local90543 nVar = pParse->nVar;90588 p->aVar = allocSpace(&x, 0, nVar*sizeof(Mem));90596 p->aVar = allocSpace(&x, p->aVar, nVar*sizeof(Mem));90606 p->nVar = 0;90611 p->nVar = (ynVar)nVar;90612 initMemArray(p->aVar, nVar, db, MEM_Null);91622 releaseMemArray(p->aVar, p->nVar);[all …]
26333 int nVar; in bind_prepared_stmt() local26338 nVar = sqlite3_bind_parameter_count(pStmt); in bind_prepared_stmt()26339 if( nVar==0 ) return; /* Nothing to do */ in bind_prepared_stmt()26349 for(i=1; i<=nVar; i++){ in bind_prepared_stmt()