Searched refs:sqlite3_strlike (Results 1 – 10 of 10) sorted by relevance
| /sqlite-3.40.0/test/ |
| H A D | fuzzinvariants.c | 139 if( sqlite3_strlike("%group%by%order%by%desc%",sqlite3_sql(pStmt),0)==0 ){ in fuzz_invariant() 153 if( sqlite3_strlike("%limit%)%order%by%", sqlite3_sql(pTestStmt),0)==0 ){ in fuzz_invariant()
|
| /sqlite-3.40.0/ext/wasm/ |
| H A D | tester1.js | 371 assert(0===capi.sqlite3_strlike("%.txt", "foo.txt", 0)). 372 assert(0!==capi.sqlite3_strlike("%.txt", "foo.xtx", 0)); 1189 assert(0===capi.sqlite3_strlike("%.txt", "foo.txt", 0)). 1190 assert(0!==capi.sqlite3_strlike("%.txt", "foo.xtx", 0));
|
| /sqlite-3.40.0/src/ |
| H A D | loadext.c | 420 sqlite3_strlike,
|
| H A D | sqlite3ext.h | 613 #define sqlite3_strlike sqlite3_api->strlike macro
|
| H A D | analyze.c | 1010 if( sqlite3_strlike("sqlite\\_%", pTab->zName, '\\')==0 ){ in analyzeOneTable()
|
| H A D | shell.c.in | 2236 if( sqlite3_strlike("CREATE VIEW%", azArg[0], 0)==0 2237 || sqlite3_strlike("CREATE TRIG%", azArg[0], 0)==0 4665 if( sqlite3_strlike(zPat, azHelp[i], 0)==0 ){ 4783 if( dfltZip && sqlite3_strlike("%.zip",zName,0)==0 ){ 4804 }else if( n==0 && dfltZip && sqlite3_strlike("%.zip",zName,0)==0 ){ 9573 int isSchema = sqlite3_strlike(zName, "sqlite_master", '\\')==0 9574 || sqlite3_strlike(zName, "sqlite_schema", '\\')==0 9575 || sqlite3_strlike(zName,"sqlite_temp_master", '\\')==0 9576 || sqlite3_strlike(zName,"sqlite_temp_schema", '\\')==0; 10078 if( sqlite3_strlike("sqlite\\_%", zLike, '\\')==0 ) bSchema = 1; [all …]
|
| H A D | func.c | 839 int sqlite3_strlike(const char *zPattern, const char *zStr, unsigned int esc){ in sqlite3_strlike() function
|
| H A D | sqlite.h.in | 9206 ** See also: [sqlite3_strlike()]. 9213 ** ^The [sqlite3_strlike(P,X,E)] interface returns zero if and only if 9216 ** [sqlite3_strlike(P,X,E)] is the same as for the "X LIKE P ESCAPE E" 9218 ** the ESCAPE clause, set the E parameter of [sqlite3_strlike(P,X,E)] to 0. 9219 ** ^As with the LIKE operator, the [sqlite3_strlike(P,X,E)] function is case 9223 ** ^The [sqlite3_strlike(P,X,E)] function matches Unicode characters, though 9231 int sqlite3_strlike(const char *zGlob, const char *zStr, unsigned int cEsc);
|
| H A D | vdbe.c | 8833 || sqlite3_strlike("DELETE%",p->zSql,0)!=0 in sqlite3VdbeExec()
|
| /sqlite-3.40.0/ext/misc/ |
| H A D | cksumvfs.c | 562 || sqlite3_strlike("enable%",zArg,0)==0 in cksmFileControl()
|