JDBC COPY error encoding

From: ttvvaa <ttvvaa(at)gmail(dot)com>
To: pgsql-jdbc(at)postgresql(dot)org
Subject: JDBC COPY error encoding
Date: 2007-08-20 14:18:29
Message-ID: 12236825.post@talk.nabble.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-jdbc


I use PostgreSQL 8.2 for WinXP (SP2).
I try to use "postgresql-jdbc-8.2-505-copy-20070719.jdbc3.jar"
(from http://kato.iki.fi/sw/db/postgresql/jdbc/copy/):

FileInputStream fs = new FileInputStream("D://t.txt");
((PGConnection)con).getCopyAPI().copyIntoDB("COPY table1 FROM
STDIN", fs);
fs.close();

but have error: 'org.postgresql.util.PSQLException: ERROR: invalid byte
sequence for encoding "UTF8": 0xa0'.

file 'D://t.txt' used WIN866 encoding.
DB used UTF8 encoding.

Command successfully runs in psql-console:
set client_encoding to WIN866;
copy table1(nn) from 'd://t.txt';

How can I solve this problem?

--
View this message in context: http://www.nabble.com/JDBC-COPY-error-encoding-tf4299167.html#a12236825
Sent from the PostgreSQL - jdbc mailing list archive at Nabble.com.

Responses

Browse pgsql-jdbc by date

  From Date Subject
Next Message j.random.programmer 2007-08-21 04:43:56 User Defined Types -- Using inet/cdr from JDBC ?
Previous Message Tom Lane 2007-08-20 03:54:09 Re: "pg_toast_2772_index" problem