show/hide this revision's text 7 edited tags
show/hide this revision's text 6 Retaged
show/hide this revision's text 5 corrected spelling

BACKGROUND:

  • Firefox 3 includes SQLite version 3.5.9. Firefox also allows extensions, which are written in javascript and can call the embedded SQLite engine.

  • As expected, executing the following SQL statement 'SELECT "TEXT" REGEXP "T*";' gives an error, since there is no REGEXP function natively included in SQLite.

  • javascript includes a built in regexp function.

  • SQLite allows loadable extensions via SELECT load_extension('filename');

QUESTION: Is it possible to a load an extension in SQLite which is written in javascript that could can do REGEXP?

show/hide this revision's text 4 retag
show/hide this revision's text 3 corrected spelling
show/hide this revision's text 2 clarified the question
show/hide this revision's text 1