Lines Matching refs:nSql
117307 int nSql = sqlite3Strlen30(zSql);
117310 assert( pToken->t.z>=zSql && &pToken->t.z[pToken->t.n]<=&zSql[nSql] );
117336 i64 nSql = sqlite3Strlen30(zSql);
117359 zOut = sqlite3DbMallocZero(db, nSql + pRename->nList*nQuot + 1);
117361 zOut = (char*)sqlite3DbMallocZero(db, (nSql*2+1) * 3);
117363 zBuf1 = &zOut[nSql*2+1];
117364 zBuf2 = &zOut[nSql*4+2];
117373 int nOut = nSql;
117374 memcpy(zOut, zSql, nSql);
117400 sqlite3_snprintf(nSql*2, zBuf2, "%Q%s", zBuf1,
179245 ** Compute a normalization of the SQL given by zSql[0..nSql-1]. Return
227666 int nSql = -1;
227733 nSql = buf.nBuf;
227738 rc = sqlite3_prepare_v2(db, zSql, nSql, ppStmt, 0);
257558 sqlite3_int64 nSql = zSql ? strlen(zSql)+1 : 0;
257559 StmtRow *pNew = (StmtRow*)sqlite3_malloc64(sizeof(StmtRow) + nSql);
257565 memcpy(pNew->zSql, zSql, nSql);