Home | History | Annotate | Download | only in orig

Lines Matching defs:zRight

21270 SQLITE_API int sqlite3_stricmp(const char *zLeft, const char *zRight){
21273 b = (unsigned char *)zRight;
21277 SQLITE_API int sqlite3_strnicmp(const char *zLeft, const char *zRight, int N){
21280 b = (unsigned char *)zRight;
92226 ** Check to see if zRight and zLeft refer to a pragma that queries
92230 static int flagPragma(Parse *pParse, const char *zLeft, const char *zRight){
92277 if( zRight==0 ){
92287 if( sqlite3GetBoolean(zRight, 0) ){
92374 char *zRight = 0; /* Nul-terminated UTF-8 string <value>, or NULL */
92404 zRight = sqlite3MPrintf(db, "-%T", pValue);
92406 zRight = sqlite3NameFromToken(db, pValue);
92411 if( sqlite3AuthCheck(pParse, SQLITE_PRAGMA, zLeft, zRight, zDb) ){
92421 aFcntl[2] = zRight;
92474 if( !zRight ){
92483 int size = sqlite3AbsInt32(sqlite3Atoi(zRight));
92507 if( !zRight ){
92514 db->nextPagesize = sqlite3Atoi(zRight);
92533 if( zRight ){
92534 b = sqlite3GetBoolean(zRight, 0);
92574 sqlite3AbsInt32(sqlite3Atoi(zRight)));
92587 int eMode = getLockingMode(zRight);
92648 if( zRight==0 ){
92654 int n = sqlite3Strlen30(zRight);
92656 if( sqlite3StrNICmp(zRight, zMode, n)==0 ) break;
92687 if( zRight ){
92688 sqlite3Atoi64(zRight, &iLimit, 1000000, SQLITE_UTF8);
92711 if( !zRight ){
92720 int eAuto = getAutoVacuum(zRight);
92769 if( zRight==0 || !sqlite3GetInt32(zRight, &iLimit) || iLimit<=0 ){
92797 if( !zRight ){
92800 int size = sqlite3Atoi(zRight);
92818 if( !zRight ){
92821 changeTempStorage(pParse, zRight);
92836 if( !zRight ){
92846 if( zRight[0] ){
92848 rc = sqlite3OsAccess(db->pVfs, zRight, SQLITE_ACCESS_READWRITE, &res);
92861 if( zRight[0] ){
92862 sqlite3_temp_directory = sqlite3_mprintf("%s", zRight);
92887 if( !zRight ){
92905 if( zRight[0] ){
92907 zRight);
92931 if( !zRight ){
92938 pDb->safety_level = getSafetyLevel(zRight,0,1)+1;
92945 if( flagPragma(pParse, zLeft, zRight) ){
92964 if( sqlite3StrICmp(zLeft, "table_info")==0 && zRight ){
92967 pTab = sqlite3FindTable(db, zRight, zDb);
93002 if( sqlite3StrICmp(zLeft, "index_info")==0 && zRight ){
93006 pIdx = sqlite3FindIndex(db, zRight, zDb);
93026 if( sqlite3StrICmp(zLeft, "index_list")==0 && zRight ){
93030 pTab = sqlite3FindTable(db, zRight, zDb);
93089 if( sqlite3StrICmp(zLeft, "foreign_key_list")==0 && zRight ){
93093 pTab = sqlite3FindTable(db, zRight, zDb);
93136 if( zRight ){
93137 if( sqlite3GetBoolean(zRight, 0) ){
93150 if( zRight ){
93151 sqlite3RegisterLikeFunctions(db, sqlite3GetBoolean(zRight, 0));
93190 if( zRight ){
93191 sqlite3GetInt32(zRight, &mxErr);
93362 if( !zRight ){ /* "PRAGMA encoding" */
93383 if( 0==sqlite3StrICmp(zRight, pEnc->zName) ){
93389 sqlite3ErrorMsg(pParse, "unsupported encoding: %s", zRight);
93440 if( zRight && iCookie!=BTREE_FREE_PAGE_COUNT ){
93449 sqlite3VdbeChangeP1(v, addr+1, sqlite3Atoi(zRight));
93498 zRight ){
93499 if( sqlite3StrICmp(zRight, "full")==0 ){
93501 }else if( sqlite3StrICmp(zRight, "restart")==0 ){
93525 if( zRight ){
93526 sqlite3_wal_autocheckpoint(db, sqlite3Atoi(zRight));
93579 if( sqlite3StrICmp(zLeft, "key")==0 && zRight ){
93580 sqlite3_key(db, zRight, sqlite3Strlen30(zRight));
93582 if( sqlite3StrICmp(zLeft, "rekey")==0 && zRight ){
93583 sqlite3_rekey(db, zRight, sqlite3Strlen30(zRight));
93585 if( zRight && (sqlite3StrICmp(zLeft, "hexkey")==0 ||
93589 for(i=0; (h1 = zRight[i])!=0 && (h2 = zRight[i+1])!=0; i+=2){
93604 if( sqlite3StrNICmp(zRight, "see-", 4)==0 ){
93605 sqlite3_activate_see(&zRight[4]);
93609 if( sqlite3StrNICmp(zRight, "cerod-", 6)==0 ){
93610 sqlite3_activate_cerod(&zRight[6]);
93632 sqlite3DbFree(db, zRight);
133784 const void *zRight
133788 res = ucol_strcoll(p, (UChar *)zLeft, nLeft/2, (UChar *)zRight, nRight/2);