Searched refs:zId (Results 1 – 2 of 2) sorted by relevance
| /freebsd/contrib/sqlite3/ |
| H A D | shell.c | 13577 static int idxIdentifierRequiresQuotes(const char *zId){ in idxIdentifierRequiresQuotes() argument 13579 int nId = STRLEN(zId); in idxIdentifierRequiresQuotes() 13581 if( sqlite3_keyword_check(zId, nId) ) return 1; in idxIdentifierRequiresQuotes() 13583 for(i=0; zId[i]; i++){ in idxIdentifierRequiresQuotes() 13584 if( !(zId[i]=='_') in idxIdentifierRequiresQuotes() 13585 && !(zId[i]>='0' && zId[i]<='9') in idxIdentifierRequiresQuotes() 13586 && !(zId[i]>='a' && zId[i]<='z') in idxIdentifierRequiresQuotes() 13587 && !(zId[i]>='A' && zId[i]<='Z') in idxIdentifierRequiresQuotes()
|
| H A D | sqlite3.c | 86000 const char *zId /* The double-quoted identifier, already dequoted */ 86003 assert( zId!=0 ); 86006 if( strcmp(zId, pStr->z)==0 ) return 1; 109149 const char *zId; /* The function name. */ 109160 zId = pExpr->u.zToken; 109161 pDef = sqlite3FindFunction(pParse->db, zId, n, enc, 0); 109163 pDef = sqlite3FindFunction(pParse->db, zId, -2, enc, 0); 115442 const char *zId; /* The function name */ 115467 zId = pExpr->u.zToken; 115468 pDef = sqlite3FindFunction(db, zId, nFarg, enc, 0); [all …]
|