Re: libpq: how to get a sequence of partial PGresult-s

From: Igor Shevchenko <igor(at)carcass(dot)ath(dot)cx>
To: pgsql-interfaces(at)postgresql(dot)org
Cc: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Subject: Re: libpq: how to get a sequence of partial PGresult-s
Date: 2003-09-23 23:00:05
Message-ID: 200309240200.05695.igor@carcass.ath.cx
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-interfaces

On Wednesday 24 September 2003 01:27, you wrote:
> Igor Shevchenko <igor(at)carcass(dot)ath(dot)cx> writes:
> > Is there any way to get/process this partial PGresult in my
> > app ? I haven't found any API function for this, so I thought about an
> > additional function for the libpq's API -
> > PGresult* PQgetNextResult ( PGconn* conn );
>
> I think this is a really bad idea, because it destroys libpq's basic
> concept that you get either success or failure for a command. Peeking
> at a partially-arrived result might give you back some rows only to get
> an error later (since the backend may fail partway through a query).

Unfortunately there's no way to archieve both streaming an errorless
PQgetResult, but in case of error, the application will recieve an error
message later anyway. So, in this context, it can only be application's
resposibility to rollback changes done by data that is already processed.
Btw, the same can happen with cursors approach.

> I'm not sure that the partially constructed result is valid anyway;
> the last row may be in a funny state. And what happens if the
> application does a PQclear() on it??

The application would recieve a deep copy of PGresult, so PQclear() wouldn't
affect current PGconn->result.

Btw, I was thinking about PQgetNextResult only for the async/non-blocking
context.

--
Best regards,
Igor Shevchenko

In response to

Responses

Browse pgsql-interfaces by date

  From Date Subject
Next Message Igor Shevchenko 2003-09-23 23:19:46 Re: libpq: how to get a sequence of partial PGresult-s
Previous Message Tom Lane 2003-09-23 22:27:29 Re: libpq: how to get a sequence of partial PGresult-s