On 1/24/17, Ben <[email protected]> wrote: > Hi all, > > Is it possible to match any sort of wildcards in Lemon?
The %wildcard directive does this. See the SQLite grammar at https://www.sqlite.org/src/artifact/29153738a73 and search for the ANY token. This is used to match arbitrary input in the argument to the virtual table name in a CREATE VIRTUAL TABLE statement. -- D. Richard Hipp [email protected] _______________________________________________ sqlite-users mailing list [email protected] http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users

