Encoding Problem

From: "meil parachorras" <meilparachorras(at)hotmail(dot)com>
To: pgsql-jdbc(at)postgresql(dot)org
Subject: Encoding Problem
Date: 2006-08-30 15:53:05
Message-ID: BAY7-F189A82C6CD4D189AB51407B63E0@phx.gbl
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-jdbc

Hello.

I have a problem with JDBC and PostgreSQL.

Example:
Class.forName("org.postgresql.Driver");
String url = "jdbc:postgresql://localhost:5432/GE";
Connection con = DriverManager.getConnection(url,"user","pass");
Statement st = con.createStatement();
sql = "INSERT INTO Auffinden VALUES ('1','München');";
ResultSet res = st.executeQuery(sql);
con.close();

And I receive this error:
org.postgresql.util.PSQLException: ERROR: character 0xc383 of encoding
"UTF8" has no equivalent in "ISO_8859_5".

How can I data with encoding ISO_8859_5 with JDBC senden?

I use the drivers: postgresql-8.1-405.jdbc2.jar with postgresql 8.1 and JDK
5.0.

Best regards,
Michael.

_________________________________________________________________
Descarga gratis la Barra de Herramientas de MSN
http://www.msn.es/usuario/busqueda/barra?XAPID=2031&DI=1055&SU=http%3A//www.hotmail.com&HL=LINKTAG1OPENINGTEXT_MSNBH

Responses

Browse pgsql-jdbc by date

  From Date Subject
Next Message Marc Herbert 2006-08-30 16:27:40 Re: Catching postgres exceptions - functions returning error values?
Previous Message Mario Splivalo 2006-08-30 14:38:47 Catching postgres exceptions - functions returning error values?