Searched refs:zLeft (Results 1 - 2 of 2) 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...]

Completed in 29 milliseconds