Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Mysql 中,如果我们插入、删除或更新数据,那么通过使用mysql_affected_rows(), 我们将获得受影响的行数,我们可以使用 inPHP将其存储在variable.
mysql_affected_rows(),
PHP
variable
那么什么是 mysql_affected_rows 的 Oracle 等价物?
我们如何获得 Oracle 中受影响的行数?
相同的 oracle db 是什么function name,以便我们可以使用相同的值,PHP或者我们可以将该值存储在 中PHP variable?
function name
PHP variable
正如谷歌告诉我的:
http://php.net/manual/en/function.oci-num-rows.php
oci_num_rows()应该做的伎俩。
oci_num_rows()