On Wed, Apr 24, 2013 at 7:39 PM, Paul Vercellotti <[email protected]>wrote:
> > > Does someone have a clever way of getting a custom tokenizer into a build > of the sqlite shell, without modifying the shell sources? > Put your tokenizer in a shared library. See http://www.sqlite.org/draft/loadext.html for further information. In the shared library initialization routine, load the new tokenizer as described in http://www.sqlite.org/src/artifact/e0a8b81383e?ln=21-51. Then use the ".load" command of the shell to load your custom tokenizer at run-time. -- D. Richard Hipp [email protected] _______________________________________________ sqlite-users mailing list [email protected] http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

