Re: libpq + utf-8

Поиск
Список
Период
Сортировка
От Michael Fuhr
Тема Re: libpq + utf-8
Дата
Msg-id 20070815035215.GA62263@winnie.fuhr.org
обсуждение исходный текст
Ответ на libpq + utf-8  (Лохтин Константин Сергеевич<lokhtin@irkutsk.bnk.ru>)
Список pgsql-interfaces
On Wed, Aug 15, 2007 at 10:23:08AM +0900, Лохтин Константин Сергеевич wrote:
> I met problems using libpq API with utf-8 database.
> I can't figure out how to use, for example, function PQexec. This function
> has two parameters: PQexec(PGconn *conn, const char *command);
> If the command is, for example:
>   INSERT INTO mytable (column1,column2,column3) VALUES ('non-English text 1','non-English text 2','non-English text
3')
> what format the string command[] should have? Should it be UTF-8, UTF-16 or ANSI(??) string?

The string should be in the encoding specified by client_encoding.
The default is the same as the database encoding but the setting
can be changed with a "SET client_encoding" statement or via the
PGCLIENTENCODING environment variable.

> When I use INSERT command with English data I can use ANSI string as
> command[] parameter and everything works fine, but when I try to
> INSERT, for example, Russian text into table columns, I fail using
> both UTF-8 and Windows1251 encoding in command[].

I can successfully insert Cyrillic text into a UTF-8 database using
PQexec().  I tested with both UTF-8 and Windows-1251 strings after
setting client_encoding appropriately.

What error or unexpected behavior are you getting?  What's the
output of "SHOW client_encoding"?  What version of PostgreSQL are
you running?  Can you post a simple program that demonstrates the
problem?

-- 
Michael Fuhr


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

Предыдущее
От: Лохтин Константин Сергеевич
Дата:
Сообщение: libpq + utf-8
Следующее
От: Stephen Davies
Дата:
Сообщение: Query performance