Home
last modified time | relevance | path

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

/netbsd-src/external/public-domain/sqlite/dist/
H A Dshell.c12659 static int idxIdentifierRequiresQuotes(const char *zId){ in idxIdentifierRequiresQuotes() argument
12661 int nId = STRLEN(zId); in idxIdentifierRequiresQuotes()
12663 if( sqlite3_keyword_check(zId, nId) ) return 1; in idxIdentifierRequiresQuotes()
12665 for(i=0; zId[i]; i++){ in idxIdentifierRequiresQuotes()
12666 if( !(zId[i]=='_') in idxIdentifierRequiresQuotes()
12667 && !(zId[i]>='0' && zId[i]<='9') in idxIdentifierRequiresQuotes()
12668 && !(zId[i]>='a' && zId[i]<='z') in idxIdentifierRequiresQuotes()
12669 && !(zId[i]>='A' && zId[i]<='Z') in idxIdentifierRequiresQuotes()
H A Dsqlite3.c84475 const char *zId /* The double-quoted identifier, already dequoted */
84478 assert( zId!=0 );
84481 if( strcmp(zId, pStr->z)==0 ) return 1;
107233 const char *zId; /* The function name. */
107242 zId = pExpr->u.zToken;
107243 pDef = sqlite3FindFunction(pParse->db, zId, n, enc, 0);
107245 pDef = sqlite3FindFunction(pParse->db, zId, -2, enc, 0);
113176 const char *zId; /* The function name */
113199 zId = pExpr->u.zToken;
113200 pDef = sqlite3FindFunction(db, zId, nFarg, enc, 0);
[all …]