Subject | RE: [firebird-support] Searching on BLOB data - case sensitive |
---|---|
Author | Kevin Day Programming |
Post date | 2005-06-02T23:08:43Z |
>If I submit a SQL statement like thisA sure fire way is
>
>select
> description
>from
> items
>where
> description like '%computer%'
>
>Where the field "description" is a BLOB field,
>I find that the search is case sensitive.
>How can I construct a statement to be
>case insensitive. Do I set something in the
>FB engine or construct a different SQL
>statement?
select
description
from
items
where
upper(description) containing 'COMPUTER'
or
select
description
from
items
where
upper(description) like '%COMPUTER%'
regards,
Kevin.