Searched refs:zId (Results 1 – 2 of 2) sorted by relevance
/freebsd/contrib/sqlite3/ |
H A D | shell.c | 12738 static int idxIdentifierRequiresQuotes(const char *zId){ in idxIdentifierRequiresQuotes() argument 12740 int nId = STRLEN(zId); in idxIdentifierRequiresQuotes() 12742 if( sqlite3_keyword_check(zId, nId) ) return 1; in idxIdentifierRequiresQuotes() 12744 for(i=0; zId[i]; i++){ in idxIdentifierRequiresQuotes() 12745 if( !(zId[i]=='_') in idxIdentifierRequiresQuotes() 12746 && !(zId[i]>='0' && zId[i]<='9') in idxIdentifierRequiresQuotes() 12747 && !(zId[i]>='a' && zId[i]<='z') in idxIdentifierRequiresQuotes() 12748 && !(zId[i]>='A' && zId[i]<='Z') in idxIdentifierRequiresQuotes()
|
H A D | sqlite3.c | 84942 const char *zId /* The double-quoted identifier, already dequoted */ 84945 assert( zId!=0 ); 84948 if( strcmp(zId, pStr->z)==0 ) return 1; 107847 const char *zId; /* The function name. */ 107856 zId = pExpr->u.zToken; 107857 pDef = sqlite3FindFunction(pParse->db, zId, n, enc, 0); 107859 pDef = sqlite3FindFunction(pParse->db, zId, -2, enc, 0); 113907 const char *zId; /* The function name */ 113932 zId = pExpr->u.zToken; 113933 pDef = sqlite3FindFunction(db, zId, nFarg, enc, 0); [all …]
|