Subject | Re: [firebird-support] how to NOT ignore case? |
---|---|
Author | Ivan Prenosil |
Post date | 2006-07-21T17:52:20Z |
> i have an sp, that looks like the following:1) WHERE asabbildung LIKE '%' || :term || '%'
>
> begin
> for select first 20 id from dicentries where asabbildung containing
> :term
> and id > :idin order by id ascending into :id do
> suspend;
> end
>
> as it turns out, the default behaviour seems to be that case is being
> ignored when using "containing"..how can i disable that?
it expects that term does not containt wildcards ('%', '_')
2) WHERE CAST(asabbildung AS VARCHAR(...) CHARACTER SET OCTETS) CONTAINING :term
Ivan
http://www.volny.cz/iprenosil/interbase/