Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dshell.c13577 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 Dsqlite3.c86000 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 …]