Searched defs:zRight (Results 1 - 2 of 2) sorted by relevance

/illumos-gate/usr/src/lib/libsqlite/src/
H A Dpragma.c113 ** Check to see if zRight and zLeft refer to a pragma that queries
117 static int flagPragma(Parse *pParse, const char *zLeft, const char *zRight){ argument
134 if( strcmp(zLeft,zRight)==0 && (v = sqliteGetVdbe(pParse))!=0 ){
140 }else if( getBoolean(zRight) ){
164 char *zRight = 0; local
172 zRight = 0;
173 sqliteSetNString(&zRight, "-", 1, pRight->z, pRight->n, 0);
175 zRight = sqliteStrNDup(pRight->z, pRight->n);
176 sqliteDequote(zRight);
178 if( sqliteAuthCheck(pParse, SQLITE_PRAGMA, zLeft, zRight,
[all...]
H A Dutil.c505 int sqliteStrICmp(const char *zLeft, const char *zRight){ argument
508 b = (unsigned char *)zRight;
512 int sqliteStrNICmp(const char *zLeft, const char *zRight, int N){ argument
515 b = (unsigned char *)zRight;

Completed in 100 milliseconds