I am trying to make a databank in SQLite 3.19 that checks if the inputed value is a valid one.
My problem is checking if an email is really an email address.
I tried to put a regex like:
CHECK (x REGEXP '[A-Z0-9a-z._%+-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,64}')
It throws "no such function: REGEXP".
Is there any easy way to implement REGEXP into sqlite 3.19?
Is there maybe any other, nice way to check for email addresses?