I have a database with an Oracle Text index and I would like to use an access layer with the Object Query Language (OQL).
I would like to use statements as
SELECT id FROM table WHERE CONTAINS(column, 'search term') > 0;
in my OQL access layer.
Is this possible or does the OQL standard not support it?