Davide Romanini wrote:
> You surely are right, but... my data is already stored in the database.
> And when I work with them with psql or the odbc driver (linking tables
> in M$ Access) my accents are there without any problem. Why the jdbc
> driver doesn't work while the others program all work?
Java uses UCS2 as its internal character set. So jdbc must do a
character set translation for all string data. In psql (and probably
odbc), by default no translation is needed.
--Barry