stephencelis / SQLite.swift

A type-safe, Swift-language layer over SQLite3.
MIT License
9.59k stars 1.55k forks source link

REGXP don't work. #1040

Closed DedicatedDev closed 3 years ago

DedicatedDev commented 3 years ago

Recently I've used this wrapper for dictionary. My Search engine are using regxp to filter data.

SELECT word FROM TWL06 WHERE word REGEXP '^(.*?[AEP]){2,}' this is working on the db browser perfectly. but it does not work with this wrapper.

DedicatedDev commented 3 years ago

find solution finally from python example.