Patches to get number of tuples affected

Michael Richards <miker@scifair.acadiau.ca>

From: Michael Richards <miker@scifair.acadiau.ca>
To: Vince Vielhaber <vev@michvhf.com>
Cc: pgsql-patches@postgresql.org, pgsql-hackers@postgresql.org
Date: 1999-06-30T17:27:46Z
Lists: pgsql-hackers

Attachments

Hi.
Here are some diffs that implement a function called TuplesAffected. It
returns the number of tuples the last command affected, or 0 if the last
command was a SELECT. I added it to the PgConnection because it contains
the Exec method as well as the PQresult structure. Maybe farther down in
the inheritance there should be a function that executes a query and
returns the number of tuples affected or returned (according to whether it
was a select or not) or a -1 on error.

Patches are attached...

-Michael