|
1 | 1 | .\" This is -*-nroff-*-
|
2 | 2 | .\" XXX standard disclaimer belongs here....
|
3 |
| -.\" $Header: /cvsroot/pgsql/src/man/Attic/libpq.3,v 1.7 1997/10/17 02:11:49 momjian Exp $ |
| 3 | +.\" $Header: /cvsroot/pgsql/src/man/Attic/libpq.3,v 1.8 1997/10/22 02:08:38 momjian Exp $ |
4 | 4 | .TH LIBPQ INTRO 03/12/94 PostgreSQL PostgreSQL
|
5 | 5 | .SH DESCRIPTION
|
6 | 6 | Libpq is the programmer's interface to Postgres. Libpq is a set of
|
@@ -506,7 +506,7 @@ Sends a null-terminated
|
506 | 506 | .Istring
|
507 | 507 | to the backend server.
|
508 | 508 | .IP
|
509 |
| -The application must explicitly send thesingle character\*(lq.\*(rq |
| 509 | +The application must explicitly send thecharacters\*(lq\\.\*(rq |
510 | 510 | to indicate to the backend that it has finished sending its data.
|
511 | 511 | .nf
|
512 | 512 | void PQputline(PGconn *conn,
|
@@ -536,7 +536,7 @@ PQexec(conn, "copy foo from stdin");
|
536 | 536 | PQputline(conn, "3<TAB>hello world<TAB>4.5\en");
|
537 | 537 | PQputline(conn,"4<TAB>goodbye world<TAB>7.11\en");
|
538 | 538 | \&...
|
539 |
| -PQputline(conn,".\en"); |
| 539 | +PQputline(conn,"\\.\en"); |
540 | 540 | PQendcopy(conn);
|
541 | 541 | .fi
|
542 | 542 | .PP
|
|