Re: Encoding problem
Tatsuo Ishii <t-ishii@sra.co.jp>
From: Tatsuo Ishii <t-ishii@sra.co.jp>
To: danny.kao@autotools.com.tw
Cc: pgsql-bugs@postgresql.org
Date: 2001-03-21T22:32:48Z
Lists: pgsql-bugs
> Dear Sir :
> Thanx. After tried it again, it still couldn't work now.
> The result is the same error.
> *********************************************
> template1=# \encoding
> EUC_TW
> template1=# insert into a values('\');
> INSERT 18762 1
What is \261\\? It does not seem to be correct EUC_TW. Probably you
want to enter BIG5 from psql? The you should do like this:
\encoding BIG5
insert into a values('some big5 characters');
For the inserting value you should not use octal exporession but
should enter "raw" big5 characters.
--
Tatsuo Ishii