Lines Matching refs:nSql
113485 int nSql = sqlite3Strlen30(zSql);
113488 assert( pToken->t.z>=zSql && &pToken->t.z[pToken->t.n]<=&zSql[nSql] );
113514 i64 nSql = sqlite3Strlen30(zSql);
113537 zOut = sqlite3DbMallocZero(db, nSql + pRename->nList*nQuot + 1);
113539 zOut = (char*)sqlite3DbMallocZero(db, (nSql*2+1) * 3);
113541 zBuf1 = &zOut[nSql*2+1];
113542 zBuf2 = &zOut[nSql*4+2];
113551 int nOut = nSql;
113552 memcpy(zOut, zSql, nSql);
113578 sqlite3_snprintf(nSql*2, zBuf2, "%Q%s", zBuf1,
172897 ** Compute a normalization of the SQL given by zSql[0..nSql-1]. Return
217915 int nSql = -1;
217943 nSql = buf.nBuf;
217947 rc = sqlite3_prepare_v2(db, zSql, nSql, ppStmt, 0);
244485 sqlite3_int64 nSql = zSql ? strlen(zSql)+1 : 0;
244486 StmtRow *pNew = (StmtRow*)sqlite3_malloc64(sizeof(StmtRow) + nSql);
244492 memcpy(pNew->zSql, zSql, nSql);