Re: getquoted and unicode

Поиск
Список
Период
Сортировка
От Daniele Varrazzo
Тема Re: getquoted and unicode
Дата
Msg-id AANLkTinhOJXya2+jXm04B6U7=3QhtKy-1MD-xVnx0v27@mail.gmail.com
обсуждение исходный текст
Ответ на Re: getquoted and unicode  ("Carl S. Yestrau Jr." <carl@featureblend.com>)
Список psycopg
On Sun, Jan 23, 2011 at 5:17 PM, Carl S. Yestrau Jr.
<carl@featureblend.com> wrote:
> It does work, using this branch, thank you.

This will likely be included in the next release.

> One observation, the string returned is of type str, not unicode.
>
> Example:
> import psycopg2
> psycopg2.extensions.register_type(psycopg2.extensions.UNICODE)
> adapted = psycopg2.extensions.adapt(u'test')
> print adapted.getquoted()
> #<type 'str'>

Yes, this is what expected. Adaptation is taking a Python object and
converting it into a SQL representation: this is always a bytes
string, as it has to be sent to the socket.

-- Daniele

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

Предыдущее
От: Daniele Varrazzo
Дата:
Сообщение: Re: Psycopg porting to Python3: a report
Следующее
От: Nicolas Grilly
Дата:
Сообщение: copy_from does not stop reading after an error