Subject | Re: [Firebird-Java] UTF-8 to ISO-8859-2 conversion problems |
---|---|
Author | Jerry |
Post date | 2004-09-15T22:24:39Z |
> GDS Exception. 335544321. arithmetic exception, numeric overflow, orCast it as character set OCTETS or declare field in database as CHARACTER
> string truncation
> Cannot transliterate character between character sets
>
> In connection URL I have:
> jdbc:firebirdsql:local:data/xml_data.fdb?lc_ctype=UNICODE_FSS
>
> If I don't specify any lc_ctype in URL, then these special characters
> are corrupted (left in UTF).
> But when the XML file is ISO-8859-2 encoded, everything runs OK, even if
> I still have lc_ctype=UNICODE_FSS in my URL.
>
SET OCTETS. OCTETS are able to store any string and it is represented as
sequence of bytes(binary data).
Jerry