(PHP 5, PHP 7, PECL OCI8 >= 1.1.0)
oci_num_rows — �������ִ�к���Ӱ�������
$stmt
) : intoci_num_rows() �������ִ�к���Ӱ���������
Note:
�������������� SELECT ��ѯ���������������� SELECT ��䱾������������ oci_fetch*() ����ȡ����������������
Example #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($stmt, OCI_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() �ڳ���ʱ���� FALSE
��
Note:
�� PHP 5.0.0 ֮ǰ�İ汾����ʹ�� ocirowcount() ������������ú�������Ȼ���ã�Ϊ���¼�����Ϊ oci_num_rows() �ı������������ѱ����������Ƽ�ʹ�á�