Ben Marchbanks wrote:
> I am confused. Is REGEXP enabled in SQLite or does there have to be a 
> regexp custom function created ?

The REGEXP operator is a special syntax for the regexp() user function. No
regexp() user function is defined by default and so use of the REGEXP
operator will normally result in an error message. If a user-defined
function named "regexp" is added at run-time, that function will be called
in order to implement the REGEXP operator.

http://www.sqlite.org/lang_expr.html

It's something you'll have to add.
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to