Re: [PATCHES] Patches to get number of tuples affected

From: Vince Vielhaber <vev(at)michvhf(dot)com>
To: hackers(at)postgresql(dot)org, pgsql-patches(at)postgresql(dot)org
Subject: Re: [PATCHES] Patches to get number of tuples affected
Date: 1999-06-30 18:37:42
Message-ID: XFMail.990630143742.vev@michvhf.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers


Darcy said:
>Thus spake Michael Richards
>> 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
>
>Why not overload PGTuples() instead (assuming it doesn't already do this)?

Why can't I find PGTuples() anywhere? What/where is it?

Anyway, I'm not sure I agree with TuplesAffected returning a 0 if
PQcmdTuples() returns NULL. An UPDATE can return 0 if it doesn't
update anything. It may be better to just wrap PQcmdTuples() in
pgdatabase.cc (since that's where PQntuples() is wrapped).

Vince.
--
==========================================================================
Vince Vielhaber -- KA8CSH email: vev(at)michvhf(dot)com flame-mail: /dev/null
# include <std/disclaimers.h> TEAM-OS2
Online Campground Directory http://www.camping-usa.com
Online Giftshop Superstore http://www.cloudninegifts.com
==========================================================================

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message D'Arcy J.M. Cain 1999-06-30 19:13:54 Re: [PATCHES] Patches to get number of tuples affected
Previous Message Michael Richards 1999-06-30 18:36:00 Re: [PATCHES] Patches to get number of tuples affected