georg           Tue Jul 13 12:41:06 2004 EDT

  Added files:                 
    /phpdoc/en/reference/mysqli/functions       mysqli-stmt-reset.xml 

  Modified files:              
    /phpdoc/en/reference/mysqli reference.xml 
  Log:
  added documentation for mysqli_stmt_reset
  
  
http://cvs.php.net/diff.php/phpdoc/en/reference/mysqli/reference.xml?r1=1.14&r2=1.15&ty=u
Index: phpdoc/en/reference/mysqli/reference.xml
diff -u phpdoc/en/reference/mysqli/reference.xml:1.14 
phpdoc/en/reference/mysqli/reference.xml:1.15
--- phpdoc/en/reference/mysqli/reference.xml:1.14       Sun Mar 21 16:23:53 2004
+++ phpdoc/en/reference/mysqli/reference.xml    Tue Jul 13 12:41:06 2004
@@ -1,5 +1,5 @@
 <?xml version='1.0' encoding='iso-8859-1'?>
-<!-- $Revision: 1.14 $ -->
+<!-- $Revision: 1.15 $ -->
  <reference id='ref.mysqli'>
   <title>Improved MySQL Extension</title>
   <titleabbrev>mysqli</titleabbrev>
@@ -232,6 +232,9 @@
        </listitem>
        <listitem>
         <para><link linkend='function.mysqli-send-long-data'>send_long_data</link> - 
Sends data in chunks</para>
+       </listitem>
+       <listitem>
+        <para><link linkend='function.mysqli-stmt-reset'>reset</link> - resets a 
prepared statement</para>
        </listitem>
        <listitem>
         <para><link linkend='function.mysqli-stmt-store-result'>store_result</link> - 
Buffers complete resultset from a prepared statement</para>

http://cvs.php.net/co.php/phpdoc/en/reference/mysqli/functions/mysqli-stmt-reset.xml?r=1.1&p=1
Index: phpdoc/en/reference/mysqli/functions/mysqli-stmt-reset.xml
+++ phpdoc/en/reference/mysqli/functions/mysqli-stmt-reset.xml
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.1 $ -->
  <refentry id="function.mysqli-stmt-reset">
   <refnamediv>
    <refname>mysqli_stmt_reset</refname>
    <refname>stmt->reset</refname>
    <refpurpose>Resets a prepared statement</refpurpose>
   </refnamediv>
   <refsect1>
    <title>Description</title>
     <para>Procedural style:</para>
     <methodsynopsis>
      <type>bool</type><methodname>mysqli_stmt_reset</methodname>
      <methodparam><type>object</type><parameter>stmt</parameter></methodparam>
     </methodsynopsis>
    <para>Object oriented style (method):</para>
     <classsynopsis>
      <ooclass><classname>stmt</classname></ooclass>
      <methodsynopsis>
       <type>bool</type>
       <methodname>reset</methodname>
       <void />
      </methodsynopsis>
     </classsynopsis>
    <para>
     The <function>mysqli_stmt_reset</function> resets a prepared statement on client 
and server 
     to state after prepare. For now this is mainly used to reset data sent with 
     <function>mysqli_stmt_send_long_data</function>.
    </para>
    <note>
     <para>
      To reprepare a statement with an other query use function 
<function>mysqli_stmt_prepare</function>.
     </para>
    </note>
   </refsect1>
   <refsect1>
    <title>Return values</title>
    <para>&return.success;</para>
   </refsect1>
   <refsect1>
    <title>See also</title>
    <para>
     <function>mysqli_prepare</function>
    </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
-->

Reply via email to