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