php-doc-en/reference/oci8/functions/ocirowcount.xml
2003-12-15 16:55:22 +00:00

69 lines
1.9 KiB
XML

<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.6 $ -->
<!-- splitted from ./en/functions/oci8.xml, last change in rev 1.2 -->
<refentry id="function.ocirowcount">
<refnamediv>
<refname>ocirowcount</refname>
<refpurpose>Gets the number of affected rows</refpurpose>
</refnamediv>
<refsect1>
<title>Description</title>
<methodsynopsis>
<type>int</type><methodname>ocirowcount</methodname>
<methodparam><type>resource</type><parameter>stmt</parameter></methodparam>
</methodsynopsis>
<para>
<function>ocirowcount</function> returns the number of rows affected
for eg update-statements. This function will not tell you the number
of rows that a select will return!
</para>
<para>
<example>
<title><function>ocirowcount</function> example</title>
<programlisting role="php">
<![CDATA[
<?php
echo "<pre>";
$conn = OCILogon("scott", "tiger");
$stmt = OCIParse($conn, "create table emp2 as select * from emp");
OCIExecute($stmt);
echo OCIRowCount($stmt) . " rows inserted.<br />";
OCIFreeStatement($stmt);
$stmt = OCIParse($conn, "delete from emp2");
OCIExecute($stmt);
echo OCIRowCount($stmt) . " rows deleted.<br />";
OCICommit($conn);
OCIFreeStatement($stmt);
$stmt = OCIParse($conn, "drop table emp2");
OCIExecute($stmt);
OCIFreeStatement($stmt);
OCILogOff($conn);
echo "</pre>";
?>
]]>
</programlisting>
</example>
</para>
</refsect1>
</refentry>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
sgml-default-dtd-file:"../../../../manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
-->