Merlin Moncure wrote:
>
> With an eye towards sideband utility, we are suggesting:
> PQcopyResult(PGresult *dest, const PGresult *src, int numAttributes,
> PGresAttDesc *attDescs, int options);
>
Small correction on that prototype.
PGresult *
PQcopyResult(const PGresult *src, int numAttributes, PGresAttDesc *attDescs, int options);
The 'dest' result is returned, not provided as an argument.
andrew