Hi,
If is set escape to \ in oracle sqlplus ( set escape )
i can execute thet following query which finds results :
select VERKORDERKAARTEN882.VERKOK_ID
from VERKORDERKAARTEN VERKORDERKAARTEN882
inner join VERKORDERKAARTEN VERKORDERKAARTEN2841 on VERKORDERKAARTEN882.VERKOK_ID=VERKORDERKAAR
where upper(VERKORDERKAARTEN2841.VERKOK_VERSIE_MOTIVATIE) like upper(‘%%%’)
order by VERKORDERKAARTEN882.VERKOK_NR asc
VERKOK_ID
21174
21173
21200
21942
if i enter the serachstring %%% in the same column in a servoy find/search session the same sql is created :
select VERKORDERKAARTEN882.VERKOK_ID
from VERKORDERKAARTEN VERKORDERKAARTEN882
inner join VERKORDERKAARTEN VERKORDERKAARTEN2841 on VERKORDERKAARTEN882.VERKOK_ID=VERKORDERKAAR
where upper(VERKORDERKAARTEN2841.VERKOK_VERSIE_MOTIVATIE) like upper(?)
order by VERKORDERKAARTEN882.VERKOK_NR asc
and the params are : [%%%]
but no results are found
it seems that Servoy is not using \ as the escape character
???
Regards,