Index: doc/src/sgml/ecpg.sgml
===================================================================
RCS file: /home/projects/pgsql/cvsroot/pgsql/doc/src/sgml/ecpg.sgml,v
retrieving revision 1.18
diff -c -r1.18 ecpg.sgml
*** doc/src/sgml/ecpg.sgml	2000/12/22 21:51:57	1.18
--- doc/src/sgml/ecpg.sgml	2001/08/24 17:52:43
***************
*** 805,857 ****
         </listitem>
        </varlistentry>
  
-       <!--WARNING: FROM HERE ON THE TEXT IS OUTDATED!-->
-       <varlistentry>
-        <term>Open cursor statement</term>
-        <listitem>
- 	<para>
- 	 An open cursor statement looks like:
- 	 <programlisting>
- exec sql open <replaceable>cursor</replaceable>;
- 	 </programlisting>
- 	 and is ignore and not copied from the output.
- 	</para>
-        </listitem>
-       </varlistentry>
- 
-       <varlistentry>
-        <term>Commit statement</term>
-        <listitem>
- 	<para>
- 	 A commit statement looks like
- 	 <programlisting>
- exec sql commit;
- 	 </programlisting>
- 	 and is translated on the output to
- 	 <programlisting>
- ECPGcommit(__LINE__);
- 	 </programlisting>
- 	</para>
-        </listitem>
-       </varlistentry>
- 
-       <varlistentry>
-        <term>Rollback statement</term>
-        <listitem>
- 	<para>
- 	 A rollback statement looks like
- 	 <programlisting>
- exec sql rollback;
- 	 </programlisting>
- 	 and is translated on the output to
- 	 <programlisting>
- ECPGrollback(__LINE__);
- 	 </programlisting>
- 	</para>
-        </listitem>
-       </varlistentry>
- 
-       <!--STARTING HERE IT IS OKAY AGAIN!-->
        <varlistentry>
         <term>Other statements</term>
         <listitem>
--- 805,810 ----
