Commit 0156fdf9 authored by Bruce Momjian's avatar Bruce Momjian

libpq++.sgml fixes from Tom Vijlbrief

parent 0818dbc3
<!-- <!--
$Header: /cvsroot/pgsql/doc/src/sgml/Attic/libpq++.sgml,v 1.14 2000/04/14 15:10:57 thomas Exp $ $Header: /cvsroot/pgsql/doc/src/sgml/Attic/libpq++.sgml,v 1.15 2000/04/19 21:21:38 momjian Exp $
--> -->
<chapter id="libpqplusplus"> <chapter id="libpqplusplus">
...@@ -736,11 +736,11 @@ $Header: /cvsroot/pgsql/doc/src/sgml/Attic/libpq++.sgml,v 1.14 2000/04/14 15:10: ...@@ -736,11 +736,11 @@ $Header: /cvsroot/pgsql/doc/src/sgml/Attic/libpq++.sgml,v 1.14 2000/04/14 15:10:
PgDatabase data; PgDatabase data;
data.Exec("create table foo (a int4, b char(16), d float8)"); data.Exec("create table foo (a int4, b char(16), d float8)");
data.Exec("copy foo from stdin"); data.Exec("copy foo from stdin");
data.putline("3\etHello World\et4.5\en"); data.PutLine("3\tHello World\t4.5\n");
data.putline("4\etGoodbye World\et7.11\en"); data.PutLine("4\tGoodbye World\t7.11\n");
&amp;... &amp;...
data.putline(".\en"); data.PutLine("\\.\n");
data.endcopy(); data.EndCopy();
</programlisting> </programlisting>
</para> </para>
</sect1> </sect1>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment