Subject problem with || with accent
Author mohamed_banaouas
I'm facing a strange behavour under FB1.5
select 1||'a' from rdb$database => '1a'
select 'é'||'à' from rdb$database => 'éà'
select 'é'||1||'à' from rdb$database => 'é1à'
BUT
select 1||'à' from rdb$database cause the following error:
arithmetic exception, numeric overflow, or string truncation
-Cannot transliterate character between character sets
It works well under IB6.
thanks for any help