Re: Extended Query Protocol Question

Поиск
Список
Период
Сортировка
От Greg
Тема Re: Extended Query Protocol Question
Дата
Msg-id 427520.29975.qm@web24303.mail.ird.yahoo.com
обсуждение исходный текст
Ответ на Re: Extended Query Protocol Question  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-novice
Ok, tried sending combination of Parse/Bind/Exec/Sync messages - works like a charm.
 
Thanks Tom. Very appreciated. I couldn't get my head around that for few days now!
 


--- On Tue, 13/7/10, Tom Lane <tgl@sss.pgh.pa.us> wrote:

From: Tom Lane <tgl@sss.pgh.pa.us>
Subject: Re: [NOVICE] Extended Query Protocol Question
To: "Greg" <grigorey@yahoo.co.uk>
Cc: pgsql-novice@postgresql.org
Date: Tuesday, 13 July, 2010, 16:18

Greg <grigorey@yahoo.co.uk> writes:
> Well, portal name is the same for both bind and execute messages
> as for 2nd point: I tried composing Parse, Bind and Execute in the
> same buffer (with Sync message ending each) and then send data to
> the database as well as sending those messages one by one and
> reading their response and still getting "portal does not exists"
> error when Execute message sent to the database.

Sync ends the transaction, if you haven't created a transaction block by
executing BEGIN.  It seems rather pointless to put more than one Sync
in an outgoing packet anyway.  Normally what you'd want is to send
Parse/Bind/Execute/Sync as one packet, because if the Parse or Bind
fails you don't want to try the Execute.

            regards, tom lane

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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: Extended Query Protocol Question
Следующее
От: Mark Kelly
Дата:
Сообщение: Order by provided IDs?