Postgres8.4.11データベースのエンコーディングとしてUTF8を使用しています。
CREATE DATABASE test
WITH OWNER = postgres
ENCODING = 'UTF8'
TABLESPACE = mydata
LC_COLLATE = 'de_DE.UTF-8'
LC_CTYPE = 'de_DE.UTF-8'
CONNECTION LIMIT = -1;
ALTER DATABASE test SET default_tablespace='mydata';
ALTER DATABASE test SET temp_tablespaces=mydata;
そしての出力\l
test | postgres | UTF8 | de_DE.UTF-8 | de_DE.UTF-8 |
ドイツ語の文字を挿入しようとすると:
create table x(a text);
insert into x values('ä,ß,ö');
ERROR: invalid byte sequence for encoding "UTF8": 0xe42cdf HINT: This error can also happen if the byte sequence does not match the encoding expected by the server, which is controlled by "client_encoding".
接続にpuTTYを使用しています。何か案が?