Re: [ADMIN] PGresult

2000-06-19 Thread Peter Eisentraut
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 (

[ADMIN] PGresult

2000-06-17 Thread Vladimir V. Zolotych
    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