kalpanapai
IS-IT--Management
What needs to be set in informix for searching keywords like café .
if we give sql as
select * from test where name matches '*mycafé*'
or select * from test where name matches '*café*'
it does not work but it works with
select * from test where name matches '* café*'
select * from test where name matches '*mycafé'
We have setting on the server as follows
LC_COLLATE=en_US.ISO8859-1
LC_CTYPE=en_US.ISO8859-1
LC_MESSAGES=C
LC_MONETARY=en_US.ISO8859-1
LC_NUMERIC=en_US.ISO8859-1
LC_TIME=en_US.ISO8859-1
Any clues appreciated
Thanks in Advance
if we give sql as
select * from test where name matches '*mycafé*'
or select * from test where name matches '*café*'
it does not work but it works with
select * from test where name matches '* café*'
select * from test where name matches '*mycafé'
We have setting on the server as follows
LC_COLLATE=en_US.ISO8859-1
LC_CTYPE=en_US.ISO8859-1
LC_MESSAGES=C
LC_MONETARY=en_US.ISO8859-1
LC_NUMERIC=en_US.ISO8859-1
LC_TIME=en_US.ISO8859-1
Any clues appreciated
Thanks in Advance