Vladimir V. Zolotych writes:
> Is it possible to have one PGresul inside another PGresult?
> E.g. having some small PGresult while another (big) PGresult
> still active?
>
> PGresult* res1 = PQexec (,,,)
> for (...) {
> // do some processing with res1.
> PGresult* res2 = PQexec (
Hello All,
Is it possible to have one PGresul inside another PGresult?
E.g. having some small PGresult while another (big) PGresult
still active?
PGresult* res1 = PQexec (,,,)
for (...) {
// do some processing with res1.
PGresult* res2 = PQexec (...);
// Process res2.
PQcl