python - be: Limit Postgres.Query to 1 command.

Поиск
Список
Период
Сортировка
От jwp@pgfoundry.org (James William Pye)
Тема python - be: Limit Postgres.Query to 1 command.
Дата
Msg-id 20050817050601.E7BC71125F35@pgfoundry.org
обсуждение исходный текст
Список pgsql-committers
Log Message:
-----------
Limit Postgres.Query to 1 command. Similar to prepared statements('P'),
explicitly limit the Query to one command. Handling multiple commands meant the
allowance of returning multiple Portals(nasty). Also, prohibit Transaction
statements as the user is expected to use Postgres.Transact(hint about it too).
Change q_rpt to a Node, as only one RPT in the generated list is allowed,
so no need to store rpt list.
Other miscellaneous changes.

Modified Files:
--------------
    be/include/pypg:
        query.h (r1.5 -> r1.6)
        (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/python/be/include/pypg/query.h.diff?r1=1.5&r2=1.6)
    be/src:
        query.c (r1.10 -> r1.11)
        (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/python/be/src/query.c.diff?r1=1.10&r2=1.11)

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

Предыдущее
От: momjian@svr1.postgresql.org (Bruce Momjian)
Дата:
Сообщение: pgsql: Fix FSM warning to mention increasing max_fsm_pages.
Следующее
От: jwp@pgfoundry.org (James William Pye)
Дата:
Сообщение: python - ex: Add a few exceptions and rename a few.