diff --git a/doc/src/sgml/libpq++.sgml b/doc/src/sgml/libpq++.sgml index 518f717f39..7acb1201e4 100644 --- a/doc/src/sgml/libpq++.sgml +++ b/doc/src/sgml/libpq++.sgml @@ -1,5 +1,5 @@ @@ -736,11 +736,11 @@ $Header: /cvsroot/pgsql/doc/src/sgml/Attic/libpq++.sgml,v 1.14 2000/04/14 15:10: PgDatabase data; data.Exec("create table foo (a int4, b char(16), d float8)"); data.Exec("copy foo from stdin"); -data.putline("3\etHello World\et4.5\en"); -data.putline("4\etGoodbye World\et7.11\en"); +data.PutLine("3\tHello World\t4.5\n"); +data.PutLine("4\tGoodbye World\t7.11\n"); &... -data.putline(".\en"); -data.endcopy(); +data.PutLine("\\.\n"); +data.EndCopy();