Re: How to retrieve how many rows are affected after doing an INSERT statement - Mailing list pgsql-interfaces

From Greg Sabino Mullane
Subject Re: How to retrieve how many rows are affected after doing an INSERT statement
Date
Msg-id efaafe2b936b90461940846fd5268fbf@biglumber.com
Whole thread Raw
In response to How to retrieve how many rows are affected after doing an INSERT statement  (jing han <jing_han_66@yahoo.com>)
List pgsql-interfaces
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1


> Is there a way to retriever from $dbh how many rows
> are affected after doing an insert statement, and how
> to present this?

You can grab it directly from the execute, or use the rows() method:

$sth = $dbh->prepare("INSERT INTO mytable SELECT * FROM mytable");
$count = $sth->execute();
print "Count is $count\n";
$count = $sth->rows;
print "Count is still $count\n";

- --
Greg Sabino Mullane greg@turnstep.com
PGP Key: 0x14964AC8 200504122200
http://biglumber.com/x/web?pk=2529DF6AB8F79407E94445B4BC9B906714964AC8

-----BEGIN PGP SIGNATURE-----

iD8DBQFCXH1TvJuQZxSWSsgRAtmzAKDWF3HFWNDl0ITAB/vJkdSSBjW2nACfWqXA
vqi47yulZB40WF7w6WuibeQ=
=QI53
-----END PGP SIGNATURE-----




pgsql-interfaces by date:

Previous
From: Michael Fuhr
Date:
Subject: Re: How to retrieve how many rows are affected after doing an INSERT statement
Next
From: jing han
Date:
Subject: questions about transaction and rollback