Обсуждение: Binary Transfer / Types

Поиск
Список
Период
Сортировка

Binary Transfer / Types

От
David Blewett
Дата:
Apologies if this has been brought up before, but I was wondering if
you knew about the existence of the libpqtypes library [1]? Could this
provide an easier / more efficient way for psycopg2 to communicate
with pg?

1. http://libpqtypes.esilo.com/

David Blewett

Re: Binary Transfer / Types

От
Daniele Varrazzo
Дата:
On Sat, Feb 26, 2011 at 4:54 PM, David Blewett <david@dawninglight.net> wrote:
> Apologies if this has been brought up before, but I was wondering if
> you knew about the existence of the libpqtypes library [1]? Could this
> provide an easier / more efficient way for psycopg2 to communicate
> with pg?
>
> 1. http://libpqtypes.esilo.com/

I've heard about it. It seems useful for a C program needing to use
directly the libpq, but I don't think it would make things easier for
psycopg. The most useful part of the library seems the variadic
functions (PQexecf, PQgetf), but Psycopg receives data in python
lists/mappings so populating a C structure iterating the Python
structures is fine enough.

Well, "will be" fine enough, as currently PQexecParams is not used at
all by psycopg. There are plans to add support for the *Params family
of function: we'll talk about them after releasing 2.4. The reasons
for which such support has not been added before are not the type of
problem libpqtypes seems designed to solve.

-- Daniele