When using TQL is it possible to do a case insensitive search?
eg I have:
select *
from
Recruitment.Application
join Recruitment.Status
join Recruitment.Applicant
join Recruitment.Position
where
Recruitment.Position.position_id = :positionId
and Recruitment.Applicant.first_name like :firstName
I am right to assume that I can't use
Upper(Recruitment.Applicant.first_name), because Upper() is a DB function?
Is there any workaround for this (that is a bit less painless than
creating a separate db column with the text in uppercase)?
Thanks,
Andrew.
Maybe silly question, but are you adding the percent signs in when
you're doing your setParam? e.g.
tquery.setParam( "firstName", "%"&arguments.firstName&"%", "string")>
Mark
alter session set NLS_COMP=LINGUISTIC;
Mark
Feel free to have a look if you want.
Mark