Re: How to insert Chinese (big5) through JDBC?

Поиск
Список
Период
Сортировка
От Kris Jurka
Тема Re: How to insert Chinese (big5) through JDBC?
Дата
Msg-id Pine.LNX.4.33.0307310632300.19468-100000@leary.csoft.net
обсуждение исходный текст
Ответ на Re: How to insert Chinese (big5) through JDBC?  (Eric Tan <neltan2002@yahoo.com.hk>)
Ответы Re: How to insert Chinese (big5) through JDBC?  (Eric Tan <neltan2002@yahoo.com.hk>)
Список pgsql-jdbc

On Thu, 31 Jul 2003, [big5] Eric Tan wrote:

> The command only work in command prompt - putty":
> ALTER DATABASE "CA_care" SET client_enconding TO 'big5';
>
> But it fail when inserting from jsp & VB.
> I have to run this code in all program which may access database.
> pgsql.execute("set client_encoding to 'Big5';");
>
> Any other solution?

The idea is that you run the ALTER DATABASE command once and then every
time you connect it will already be set, so you do not need to make that
call in your client.  Notice the second time I connect the client_encoding
is already set.

jurka@doug:~$ psql tantest
Welcome to psql 7.3.3, the PostgreSQL interactive terminal.

Type:  \copyright for distribution terms
       \h for help with SQL commands
       \? for help on internal slash commands
       \g or terminate with semicolon to execute query
       \q to quit

tantest=# show client_encoding;
 client_encoding
-----------------
 SQL_ASCII
(1 row)

tantest=# alter database tantest set client_encoding to big5;
ALTER DATABASE
tantest=# \q
jurka@doug:~$ psql tantest
Welcome to psql 7.3.3, the PostgreSQL interactive terminal.

Type:  \copyright for distribution terms
       \h for help with SQL commands
       \? for help on internal slash commands
       \g or terminate with semicolon to execute query
       \q to quit

tantest=# show client_encoding;
 client_encoding
-----------------
 big5
(1 row)



To check if you have correctly run the ALTER DATABASE statement, check

SELECT datconfig FROM pg_database WHERE datname='<dbname>';

You should see
tantest=# select datconfig FROM pg_database where datname='tantest';
       datconfig
------------------------
 {client_encoding=big5}
(1 row)


Kris Jurka



В списке pgsql-jdbc по дате отправления:

Предыдущее
От: Eric Tan
Дата:
Сообщение: Re: How to insert Chinese (big5) through JDBC?
Следующее
От: Rich Cullingford
Дата:
Сообщение: SSL support in PG 7.4