pg_affected_rows
pg_affected_rows
(PHP 4 >= 4.2.0, PHP 5, PHP 7)
pg_affected_rows - 返回受影响的记录数(元组)
描述
int pg_affected_rows ( resource $result )
pg_affected_rows()
返回受INSERT
,UPDATE
和DELETE
查询影响的元组(实例/记录/行)的数量。
自PostgreSQL 9.0及以上版本以来,服务器返回SELECTed行的数量。较老的PostgreSQL为SELECT返回0。
注意
:这个函数过去被称为pg_cmdtuples()
。
参数
result
PostgreSQL查询结果资源,由pg_query(),pg_query_params()或pg_execute()等返回。
返回值
查询影响的行数。如果没有元组受到影响,它将返回0。
例子
Example #1 pg
_
affected
_
rows() example
<?php
$result = pg_query($conn, "INSERT INTO authors VALUES ('Orwell', 2002, 'Animal Farm')"
$cmdtuples = pg_affected_rows($result
echo $cmdtuples . " tuples are affected.\n";
?>
上面的例子将输出:
1 tuples are affected.