Searched refs:zId (Results 1 - 2 of 2) sorted by relevance

/netbsd-current/external/public-domain/sqlite/dist/
H A Dshell.c12656 ** Return true if zId must be quoted in order to use it as an SQL
12659 static int idxIdentifierRequiresQuotes(const char *zId){ argument
12661 int nId = STRLEN(zId);
12663 if( sqlite3_keyword_check(zId, nId) ) return 1;
12665 for(i=0; zId[i]; i++){
12666 if( !(zId[i]=='_')
12667 && !(zId[i]>='0' && zId[i]<='9')
12668 && !(zId[i]>='a' && zId[
[all...]
H A Dsqlite3.c107233 const char *zId; /* The function name. */ local
113176 const char *zId; /* The function name */ local
177714 char *zId = sqlite3DbStrNDup(db, zSql+i, n); local
[all...]

Completed in 566 milliseconds