Open gaddlord opened 1 year ago
i'm here for the same reason. Db browser works with this but fails in code:
SELECT dpd.word as word from dictionary_books, dpd
WHERE dpd.word LIKE 'pur%' AND dictionary_books.id = 11
AND dictionary_books.user_choice = 1
AND dpd.word NOT REGEXP '[0-9]+'
LIMIT 80
Same problem here. It would be nice with support for the regexp function when using sqflite.
Likely the reason is since sqlite.dll was not built with support for REGEXP. One can check https://stackoverflow.com/questions/6288287/sqlite-in-c-and-supporting-regexp
I get the following error:
while executing:
Maybe sqflite was compiled without RegEx support?