2010-08-05 09:43:31 +00:00
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
<refentry xml:id= "function.cubrid-commit" xmlns= "http://docbook.org/ns/docbook" xmlns:xlink= "http://www.w3.org/1999/xlink" >
<refnamediv >
<refname > cubrid_commit</refname>
<refpurpose > Is used to execute commit on the transaction</refpurpose>
</refnamediv>
<refsect1 role= "description" >
&reftitle.description;
<methodsynopsis >
<type > int</type> <methodname > cubrid_commit</methodname>
2010-09-07 02:24:05 +00:00
<methodparam > <type > resource</type> <parameter > conn_identifier</parameter> </methodparam> </methodsynopsis>
2010-08-05 09:43:31 +00:00
<para >
2010-08-05 15:05:42 +00:00
The <function > cubrid_commit</function> function is used to execute commit on the transaction pointed by <parameter > conn_handle</parameter> , currently on progress. Connection to the server is closed after the <function > cubrid_commit</function> function is called; the connection handle is still valid, however.
2010-08-05 09:43:31 +00:00
</para>
</refsect1>
<refsect1 role= "parameters" >
&reftitle.parameters;
<para >
<variablelist >
2010-08-05 15:05:42 +00:00
<varlistentry >
2010-09-07 02:24:05 +00:00
<term > <parameter > conn_identifier</parameter> </term>
<listitem > <para > Connection identifier.</para> </listitem>
2010-08-05 09:43:31 +00:00
</varlistentry>
</variablelist>
</para>
</refsect1>
<refsect1 role= "returnvalues" >
&reftitle.returnvalues;
<para >
2010-08-05 15:05:42 +00:00
&true; , when process is successful.
2010-08-05 09:43:31 +00:00
</para>
<para >
2010-08-05 15:05:42 +00:00
&false; , when process is unsuccessful.
2010-08-05 09:43:31 +00:00
</para>
</refsect1>
<refsect1 role= "examples" >
&reftitle.examples;
<example >
<title > <function > cubrid_commit</function> example</title>
<programlisting role= "php" >
< ![CDATA[
< ?php
$req = cubrid_execute ($oid, "insert into person values (2,’ John’ )");
if ($req) {
cubrid_close_request ($req);
if ($failed) {
cubrid_rollback ($con);
} else {
cubrid_commit ($con);
}
}
?>
]]>
</programlisting>
</example>
</refsect1>
<refsect1 role= "seealso" >
&reftitle.seealso;
<para >
<simplelist >
<member > <function > cubrid_rollback</function> </member>
</simplelist>
</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:"~/.phpdoc/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
-->