Re: How to use PQconsumeInput and PQisBusy correctly ? - Mailing list pgsql-interfaces

From Tom Lane
Subject Re: How to use PQconsumeInput and PQisBusy correctly ?
Date
Msg-id 18233.1110740054@sss.pgh.pa.us
Whole thread Raw
In response to How to use PQconsumeInput and PQisBusy correctly ?  ("Rodrigo Moreno" <rodrigo.miguel@terra.com.br>)
Responses RES: How to use PQconsumeInput and PQisBusy correctly ?  ("Rodrigo Moreno" <rodrigo.miguel@terra.com.br>)
List pgsql-interfaces
"Rodrigo Moreno" <rodrigo.miguel@terra.com.br> writes:
> What's the right way to use pqconsumeinput and pqisbusy ?
> The below code could be used to do that ? 

It would work but it seems rather pointless; the only reason you would
use those functions is if you have something else useful to do while
waiting for the query result ... and this program structure isn't
very conducive to doing other stuff while waiting.  Usually you'd want
to have a main loop that can dispatch handling of various events, one
of them being checking for an available query result.

The whole thing is a bit of a stone-age technique anyway; if you were
thinking of starting a new program today you'd probably use threads in
preference to an event loop.
        regards, tom lane


pgsql-interfaces by date:

Previous
From: "Rodrigo Moreno"
Date:
Subject: How to use PQconsumeInput and PQisBusy correctly ?
Next
From: "Rodrigo Moreno"
Date:
Subject: RES: How to use PQconsumeInput and PQisBusy correctly ?