oci_num_rows

(PHP 5, PHP 7, PHP 8, PECL OCI8 >= 1.1.0)

oci_num_rows返回語句執(zhí)行后受影響的行數(shù)

說明

oci_num_rows(resource $stmt): int

oci_num_rows() 返回語句執(zhí)行后受影響的行數(shù)。

注意:

本函數(shù)并不返回 SELECT 查詢出來的行數(shù)!對(duì)于 SELECT 語句本函數(shù)將返回用 oci_fetch*() 函數(shù)取到緩沖區(qū)的行數(shù)。

示例 #1 oci_num_rows() 例子

<?php
    
echo "<pre>";
    
$conn oci_connect("scott""tiger");

    
$stmt oci_parse($conn"create table emp2 as select * from emp");
    
oci_execute($stmt);
    echo 
oci_num_rows($stmt) . " rows inserted.<br />";
    
oci_free_statement($stmt);

    
$stmt oci_parse($conn"delete from emp2");
    
oci_execute($stmtOCI_DEFAULT);
    echo 
oci_num_rows($stmt) . " rows deleted.<br />";
    
oci_commit($conn);
    
oci_free_statement($stmt);

    
$stmt oci_parse($conn"drop table emp2");
    
oci_execute($stmt);
    
oci_free_statement($stmt);

    
oci_close($conn);
    echo 
"</pre>";
?>

oci_num_rows() 在出錯(cuò)時(shí)返回 false。

注意:

在 PHP 5.0.0 之前的版本必須使用 ocirowcount() 替代本函數(shù)。該函數(shù)名仍然可用,為向下兼容作為 oci_num_rows() 的別名。不過其已被廢棄,不推薦使用。