Hi.
I’m looking into whether I can use InlineQuerier for a Workbench validation of data using a list of criterias.
One of the things I need to do is use RegEx, and is thus trying to use the REGEXP construct mentioned in the documentation. However, this is the error I’m getting:
InlineQuerier_2 (InlineQueryFactory): Error preparing database query: no such function: REGEXP Unable to execute statementThe full query is here:
SELECT *
FROM "Data"
WHERE
NOT((
"tvaersnitsform" IS NULL
OR
"tvaersnitsform" REGEXP '^(other: )[0-9a-zA-ZæøåÆØÅ]{2,}$'
OR
"tvaersnitsform" IN (SELECT "key" FROM "LOOKUP.Tvaersnitsformtype")
))
If I remove the REGEXP part of the criteria, it works just fine.
Has anyone used InlineQuerier much, and have some insights into what might be wrong here ?
Is it just a subset of SQLite’s SQL language being available in InlineQuerier ?
If I click the dialog Help button, it leads me to a page, that clearly shows REGEXP.
Cheers.


