HomeSort by: relevance | last modified time | path
    Searched refs:sqlite3_strlike (Results 1 - 5 of 5) sorted by relevancy

  /src/external/public-domain/sqlite/man/
Makefile 196 sqlite3_strlike.3 \
  /src/external/public-domain/sqlite/dist/
sqlite3ext.h 630 #define sqlite3_strlike sqlite3_api->strlike macro
shell.c 25678 if( sqlite3_strlike("CREATE VIEW%", zSql, 0)==0
25679 || sqlite3_strlike("CREATE TRIG%", zSql, 0)==0
25685 isIndex = sqlite3_strlike("CREATE INDEX%", zSql, 0)==0
25686 || sqlite3_strlike("CREATE UNIQUE INDEX%", zSql, 0)==0;
26298 }else if( sqlite3_strlike("_NAN", zVar, 0)==0 ){
26302 }else if( sqlite3_strlike("_INF", zVar, 0)==0 ){
27540 if( sqlite3_strlike(zPat, azHelp[i], 0)==0 ){
27735 }else if( n==0 && dfltZip && sqlite3_strlike("%.zip",zName,0)==0 ){
27743 if( dfltZip && sqlite3_strlike("%.zip",zName,0)==0 ){
27775 if( sqlite3_strlike("%.sql",z,0)==0 ) return 1
    [all...]
sqlite3.h 9904 ** See also: [sqlite3_strlike()].
9911 ** ^The [sqlite3_strlike(P,X,E)] interface returns zero if and only if
9914 ** [sqlite3_strlike(P,X,E)] is the same as for the "X LIKE P ESCAPE E"
9916 ** the ESCAPE clause, set the E parameter of [sqlite3_strlike(P,X,E)] to 0.
9917 ** ^As with the LIKE operator, the [sqlite3_strlike(P,X,E)] function is case
9921 ** ^The [sqlite3_strlike(P,X,E)] function matches Unicode characters, though
9929 SQLITE_API int sqlite3_strlike(const char *zGlob, const char *zStr, unsigned int cEsc);
sqlite3.c 10225 ** See also: [sqlite3_strlike()].
10232 ** ^The [sqlite3_strlike(P,X,E)] interface returns zero if and only if
10235 ** [sqlite3_strlike(P,X,E)] is the same as for the "X LIKE P ESCAPE E"
10237 ** the ESCAPE clause, set the E parameter of [sqlite3_strlike(P,X,E)] to 0.
10238 ** ^As with the LIKE operator, the [sqlite3_strlike(P,X,E)] function is case
10242 ** ^The [sqlite3_strlike(P,X,E)] function matches Unicode characters, though
10250 SQLITE_API int sqlite3_strlike(const char *zGlob, const char *zStr, unsigned int cEsc);
134585 SQLITE_API int sqlite3_strlike(const char *zPattern, const char *zStr, unsigned int esc){ function
142850 #define sqlite3_strlike macro
    [all...]

Completed in 98 milliseconds