fetchone vs. fetchmany with pygres...

Поиск
Список
Период
Сортировка
От gb@a3design.de
Тема fetchone vs. fetchmany with pygres...
Дата
Msg-id Pine.LNX.4.21.0012071601590.367-100000@firebird.mipz.de
обсуждение исходный текст
Список pgsql-general
Hello there!

I am using pygres (postgres-python-interface).

There are two functions for cursors:

cursor.fetchone(): returns one result-row.
cursor.fetchmany(): returns all result-rows.

the problem:
multiple calls of "fetchone" return the same data every call. (It seems to
be written for "non-table-returns" only)
the call of "fetchmany" returns a list of all rows. This is ok but imagine
a very large return-set. You have the whole return-set in the memory
instead of every line one by one.

Is there a solution with something like "fetchone" but with every call to
get the next result-row?

yours
gunter



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

Предыдущее
От: Michael Meskes
Дата:
Сообщение: Re: ECPG could not connect to the database.
Следующее
От: Peter Eisentraut
Дата:
Сообщение: Re: Request for INSTALL help