Lines Matching refs:sqlite3_strlike
9567 ** See also: [sqlite3_strlike()].
9574 ** ^The [sqlite3_strlike(P,X,E)] interface returns zero if and only if
9577 ** [sqlite3_strlike(P,X,E)] is the same as for the "X LIKE P ESCAPE E"
9579 ** the ESCAPE clause, set the E parameter of [sqlite3_strlike(P,X,E)] to 0.
9580 ** ^As with the LIKE operator, the [sqlite3_strlike(P,X,E)] function is case
9584 ** ^The [sqlite3_strlike(P,X,E)] function matches Unicode characters, though
9592 SQLITE_API int sqlite3_strlike(const char *zGlob, const char *zStr, unsigned int cEsc);
99226 || sqlite3_strlike("DELETE%",p->zSql,0)!=0
115616 if( sqlite3_strlike("sqlite\\_%", pTab->zName, '\\')==0 ){
125552 ** The sqlite3_strlike() interface. Return 0 on a match and non-zero for
125555 SQLITE_API int sqlite3_strlike(const char *zPattern, const char *zStr, unsigned int esc){
132542 #define sqlite3_strlike sqlite3_api->strlike
133047 sqlite3_strlike,