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()
19873 ynVar nVar; /* Number of '?' variables seen in the SQL so far */ member23552 ynVar nVar; /* Number of entries in aVar[] */ member87466 int nVar; /* Number of parameters */87482 nVar = pParse->nVar;87527 p->aVar = allocSpace(&x, 0, nVar*sizeof(Mem));87535 p->aVar = allocSpace(&x, p->aVar, nVar*sizeof(Mem));87542 p->nVar = 0;87547 p->nVar = (ynVar)nVar;87548 initMemArray(p->aVar, nVar, db, MEM_Null);88551 releaseMemArray(p->aVar, p->nVar);[all …]
21614 int nVar; in bind_prepared_stmt() local21619 nVar = sqlite3_bind_parameter_count(pStmt); in bind_prepared_stmt()21620 if( nVar==0 ) return; /* Nothing to do */ in bind_prepared_stmt()21630 for(i=1; i<=nVar; i++){ in bind_prepared_stmt()