pg_affected_rows
(PHP 4 >= 4.2.0)
pg_affected_rows -- 返回受影响的记录数目
说明
int
pg_affected_rows ( resource result)
pg_affected_rows() 返回在 pg_query() 中执行 INSERT,UPDATE 和 DELETE 查询后受到影响的记录数目(包括实例/记录/行)。如果本函数没有影响到任何记录,则返回 0。
例子 1. pg_affected_rows() <?php
$result = pg_query ($conn, "INSERT INTO publisher VALUES ('Author')");
$cmdtuples = pg_affected_rows ($result);
echo $cmdtuples . " tuples are affected.";
?> |
|
注:
本函数以前被称为 pg_cmdtuples()。
参见 pg_query() 和 pg_num_rows()。