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

/illumos-gate/usr/src/lib/libsqlite/src/
H A Dbuild.c797 int needQuote = 0; local
799 if( *z=='\'' ){ n++; needQuote=1; }
801 return n + needQuote*2;
809 int i, j, needQuote; local
814 needQuote = zIdent[j]!=0 || isdigit(zIdent[0])
816 if( needQuote ) z[i++] = '\'';
821 if( needQuote ) z[i++] = '\'';
/illumos-gate/usr/src/cmd/sqlite/
H A Dshell.c424 int needQuote; local
432 needQuote = !isalpha(*zName) && *zName!='_';
435 needQuote = 1;
439 if( needQuote ) n += 2;
446 if( needQuote ) z[n++] = '\'';
451 if( needQuote ) z[n++] = '\'';

Completed in 53 milliseconds