Lines Matching defs:zId
10175 ** Return true if zId must be quoted in order to use it as an SQL
10178 static int idxIdentifierRequiresQuotes(const char *zId){
10180 int nId = STRLEN(zId);
10182 if( sqlite3_keyword_check(zId, nId) ) return 1;
10184 for(i=0; zId[i]; i++){
10185 if( !(zId[i]=='_')
10186 && !(zId[i]>='0' && zId[i]<='9')
10187 && !(zId[i]>='a' && zId[i]<='z')
10188 && !(zId[i]>='A' && zId[i]<='Z')