Is it possible to create a javascript User-defined function in sqlite - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T13:37:34Zhttp://stackoverflow.com/feeds/question/455292http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/455292/is-it-possible-to-create-a-javascript-user-defined-function-in-sqlite7Is it possible to create a javascript User-defined function in sqliteNoah2009-01-18T15:16:29Z2009-02-14T00:51:58Z
<p>BACKGROUND: </p>
<ul>
<li><p>Firefox 3 includes
<a href="http://sqlite.org" rel="nofollow">SQLite</a> version
3.5.9. Firefox also allows extensions, which are written in javascript and
can call the embedded SQLite engine.</p></li>
<li><p>As expected, executing the following
SQL statement 'SELECT "TEXT" REGEXP
"T*";' gives an error, since there is
no REGEXP function natively included in SQLite.</p></li>
<li><p>javascript includes a built in regexp function.</p></li>
<li><p>SQLite allows loadable extensions via SELECT load_extension('filename');</p></li>
</ul>
<p>QUESTION:
<strong>Is it possible to a load an extension in SQLite which is written in javascript that can do REGEXP?</strong></p>
http://stackoverflow.com/questions/455292/is-it-possible-to-create-a-javascript-user-defined-function-in-sqlite/459278#4592784Answer by Noah for Is it possible to create a javascript User-defined function in sqliteNoah2009-01-19T21:42:42Z2009-01-23T22:39:21Z<p>Yes. It is possible to call javascript functions</p>
<pre><code>//(thanks to Mirnal Kant, SQLManager)
//Version 2 -- Prevent Firefox crashing
// -- Suspect a problem with continual creation of Regex objects
var g_RegExpString = null;
var g_RegExp = null;
//functions to be created for the db
var smDbFunctions = {
// (0) = Regex Expression
// (1) = Column value to test
regexp: {
onFunctionCall: function(val) {
if (g_RegExp == null || val.getString(0) != g_RegExpString)
{
g_RegExpString = val.getString(0);
g_RegExp = new RegExp(g_RegExpString);
}
if (val.getString(1).match(g_RegExp)) return 1;
else return 0;
}
}
};
</code></pre>
<p>after instantiating a SQLite instance:</p>
<pre><code>Database.createFunction("REGEXP", 2, smDbFunctions.regexp);
</code></pre>