Searched defs:zLeft (Results 1 - 3 of 3) sorted by relevance

/osnet-11/usr/src/lib/libsqlite/tool/
H A Dshowdb.c66 char *zLeft; local
67 iStart = strtol(argv[i], &zLeft, 0);
68 if( zLeft && strcmp(zLeft,"..end")==0 ){
70 }else if( zLeft && zLeft[0]=='.' && zLeft[1]=='.' ){
71 iEnd = strtol(&zLeft[2], 0, 0);
/osnet-11/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
131 if( sqliteStrICmp(zLeft, aPragma[i].zName)==0 ){
134 if( strcmp(zLeft,zRight)==0 && (v = sqliteGetVdbe(pParse))!=0 ){
163 char *zLeft = 0; local
169 zLeft = sqliteStrNDup(pLeft->z, pLeft->n);
170 sqliteDequote(zLeft);
178 if( sqliteAuthCheck(pParse, SQLITE_PRAGMA, zLeft, zRight, 0) ){
179 sqliteFree(zLeft);
200 if( sqliteStrICmp(zLeft,"default_cache_siz
[all...]
H A Dutil.c505 int sqliteStrICmp(const char *zLeft, const char *zRight){ argument
507 a = (unsigned char *)zLeft;
512 int sqliteStrNICmp(const char *zLeft, const char *zRight, int N){ argument
514 a = (unsigned char *)zLeft;

Completed in 30 milliseconds