2010-03-28 22:10:10 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2009-07-11 07:47:57 +00:00
|
|
|
<!-- $Revision$ -->
|
2007-06-20 22:25:43 +00:00
|
|
|
<refentry xml:id="function.ingres-commit" xmlns="http://docbook.org/ns/docbook">
|
2007-06-10 19:06:37 +00:00
|
|
|
<refnamediv>
|
|
|
|
<refname>ingres_commit</refname>
|
|
|
|
<refpurpose>Commit a transaction</refpurpose>
|
|
|
|
</refnamediv>
|
2007-06-10 19:07:03 +00:00
|
|
|
|
|
|
|
<refsect1 role="description">
|
|
|
|
&reftitle.description;
|
2007-06-10 19:06:37 +00:00
|
|
|
<methodsynopsis>
|
|
|
|
<type>bool</type><methodname>ingres_commit</methodname>
|
2009-03-12 15:59:24 +00:00
|
|
|
<methodparam><type>resource</type><parameter>link</parameter></methodparam>
|
2007-06-10 19:06:37 +00:00
|
|
|
</methodsynopsis>
|
|
|
|
<para>
|
|
|
|
<function>ingres_commit</function> commits the currently open
|
|
|
|
transaction, making all changes made to the database permanent.
|
|
|
|
</para>
|
|
|
|
<para>
|
2009-03-12 15:59:24 +00:00
|
|
|
This closes the transaction. A new transaction can be opened by sending a
|
2007-06-10 19:06:37 +00:00
|
|
|
query with <function>ingres_query</function>.
|
|
|
|
</para>
|
|
|
|
<para>
|
|
|
|
You can also have the server commit automatically after every
|
|
|
|
query by calling <function>ingres_autocommit</function> before
|
|
|
|
opening the transaction.
|
|
|
|
</para>
|
2009-03-12 15:59:24 +00:00
|
|
|
<para>
|
|
|
|
By default Ingres will roll back any uncommitted transactions at the end of
|
|
|
|
a request. Use this function or <function>ingres_autocommit</function> to
|
|
|
|
ensure your that data is committed to the database.
|
|
|
|
</para>
|
2007-06-10 19:07:03 +00:00
|
|
|
</refsect1>
|
|
|
|
|
|
|
|
<refsect1 role="parameters">
|
|
|
|
&reftitle.parameters;
|
|
|
|
<para>
|
|
|
|
<variablelist>
|
|
|
|
<varlistentry>
|
|
|
|
<term><parameter>link</parameter></term>
|
|
|
|
<listitem>
|
|
|
|
<para>
|
2009-03-12 15:59:24 +00:00
|
|
|
The connection link identifier
|
2007-06-10 19:07:03 +00:00
|
|
|
</para>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
|
|
|
</variablelist>
|
|
|
|
</para>
|
|
|
|
</refsect1>
|
|
|
|
|
|
|
|
<refsect1 role="returnvalues">
|
|
|
|
&reftitle.returnvalues;
|
2007-06-10 19:06:37 +00:00
|
|
|
<para>
|
2007-06-10 19:07:03 +00:00
|
|
|
&return.success;
|
2007-06-10 19:06:37 +00:00
|
|
|
</para>
|
|
|
|
</refsect1>
|
2007-06-10 19:07:03 +00:00
|
|
|
|
|
|
|
<refsect1 role="seealso">
|
|
|
|
&reftitle.seealso;
|
|
|
|
<para>
|
|
|
|
<simplelist>
|
|
|
|
<member><function>ingres_query</function></member>
|
|
|
|
<member><function>ingres_rollback</function></member>
|
|
|
|
<member><function>ingres_autocommit</function></member>
|
|
|
|
</simplelist>
|
|
|
|
</para>
|
|
|
|
</refsect1>
|
|
|
|
|
2007-06-10 19:06:37 +00:00
|
|
|
</refentry>
|
2002-04-15 00:12:54 +00:00
|
|
|
|
|
|
|
<!-- 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
|
2009-09-25 07:04:39 +00:00
|
|
|
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
|
2002-04-15 00:12:54 +00:00
|
|
|
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
|
|
|
|
-->
|