Hello,
Using LLBGen pro v2.5 June 2nd, 2008 with Oracle 11g MS provider.
Maybe this question has already been answered before (I searched for something similar to this but did not found anything).
I would like to make a filter like this:
SELECT * FROM SOME_TABLE T WHERE '1235' LIKE T.FIELD;
As far as I can understand, only this is possible:
SELECT * FROM SOME_TABLE T WHERE T.FIELD LIKE '1235' ;
In a nutshell the T.FIELD holds wild-card characters which should be compared against a string.
Thanks.