Re: Integration of Psycopg with XTA

Поиск
Список
Период
Сортировка
От Daniele Varrazzo
Тема Re: Integration of Psycopg with XTA
Дата
Msg-id CA+mi_8bZ-hxA2DTshOh15b1GdbET8+EVO5eh9N2qyyfvDgXKCw@mail.gmail.com
обсуждение исходный текст
Ответ на Re: Integration of Psycopg with XTA  (Christian Ferrari <camauz@yahoo.com>)
Ответы Re: Integration of Psycopg with XTA  (Christian Ferrari <camauz@yahoo.com>)
Список psycopg
On Wed, Sep 26, 2018 at 9:36 PM Christian Ferrari <camauz@yahoo.com> wrote:
>
> Dear Daniele,
> thank you for providing the hack: it's a starting point to check integration feasibility.
> Unfortunately it does not work in my environment:
> Ubuntu LTS 14.04 64 bit
> python 2.7.6

>   File "pqconn_hack.py", line 24, in getpqconn
>     pqconn = htonl(int(hex[ver_off + 8:ver_off + 16], 16))
> TypeError: 'builtin_function_or_method' object has no attribute '__getitem__'

This is an error: it should have been 'mem' instead of 'hex':

    pqconn = htonl(int(mem[ver_off + 8:ver_off + 16], 16))

-- Daniele


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

Предыдущее
От: Federico Di Gregorio
Дата:
Сообщение: Re: Integration of Psycopg with XTA
Следующее
От: Christian Ferrari
Дата:
Сообщение: Re: Integration of Psycopg with XTA