Subject Re: [Firebird-Java] Re: Java CharSet to Firebird CharSet
Author Mark Rotteveel
On Mon, 13 Aug 2012 00:53:36 -0700 (PDT), Engine Ehs <netehs@...>
wrote:
> Why NONE encoding is evil ? It is stupide to charge especially servers
for
> encoding and decoding charsets., It can be done at the final end only
and
> there is all in java to do that easely.

If you database encoding is NONE, then one connection could write to it as
UTF-8, another as WIN1250 etcetc and now you have logically corrupted
character data when another connection reads the data written by another
connection.

It is better to enforce this integrity of your data on the database side,
then to depend on all programs connecting to behave.

Mark