On 11/26/16, Lorenz Haas <lyk...@gmail.com> wrote:
> Hi,
>
> with sqlite3_create_function_v2() I create a regexp function in order to
> use REGEXP. For a correct implementation of my regexp function, however,
> I need to know if it is called concurrently from within SQLite.
>
> Is it? Is there any information in the documentation I missed?

The regexp function will only be called concurrently if SQLite is
called concurrently.  So if you use SQLite from just a single thread,
your regexp function need not be threadsafe.

-- 
D. Richard Hipp
d...@sqlite.org
_______________________________________________
sqlite-users mailing list
sqlite-users@mailinglists.sqlite.org
http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to