Remove tabs in SGML.

REL9_0_ALPHA4_BRANCH
Bruce Momjian 16 years ago
parent c651c0eb01
commit d36aa67152
  1. 6
      doc/src/sgml/ecpg.sgml

@ -1,4 +1,4 @@
<!-- $PostgreSQL: pgsql/doc/src/sgml/ecpg.sgml,v 1.94 2010/01/26 09:10:11 meskes Exp $ --> <!-- $PostgreSQL: pgsql/doc/src/sgml/ecpg.sgml,v 1.95 2010/01/26 14:21:29 momjian Exp $ -->
<chapter id="ecpg"> <chapter id="ecpg">
<title><application>ECPG</application> - Embedded <acronym>SQL</acronym> in C</title> <title><application>ECPG</application> - Embedded <acronym>SQL</acronym> in C</title>
@ -2652,7 +2652,7 @@ EXEC SQL GET DESCRIPTOR mydesc VALUE 1 :id = DATA;
record from the resultset. record from the resultset.
<programlisting> <programlisting>
EXEC SQL include sqlda.h; EXEC SQL include sqlda.h;
sqlda_t *mysqlda; sqlda_t *mysqlda;
EXEC SQL FETCH 3 FROM mycursor INTO DESCRIPTOR mysqlda; EXEC SQL FETCH 3 FROM mycursor INTO DESCRIPTOR mysqlda;
</programlisting> </programlisting>
@ -2933,7 +2933,7 @@ struct sqlname
there is no <literal>FREE cursor_name</> statement in ECPG. This is because in ECPG, there is no <literal>FREE cursor_name</> statement in ECPG. This is because in ECPG,
<literal>DECLARE CURSOR</literal> doesn't translate to a function call into <literal>DECLARE CURSOR</literal> doesn't translate to a function call into
the runtime library that uses to the cursor name. This means that there's no runtime the runtime library that uses to the cursor name. This means that there's no runtime
bookkeeping of SQL cursors in the ECPG runtime library, only in the PostgreSQL server. bookkeeping of SQL cursors in the ECPG runtime library, only in the PostgreSQL server.
</para> </para>
</listitem> </listitem>
</varlistentry> </varlistentry>

Loading…
Cancel
Save