diff options
Diffstat (limited to 'src/man/libpq.3')
-rw-r--r-- | src/man/libpq.3 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/man/libpq.3 b/src/man/libpq.3 index f10ac9f45e5..f62af0616ae 100644 --- a/src/man/libpq.3 +++ b/src/man/libpq.3 @@ -1,6 +1,6 @@ .\" This is -*-nroff-*- .\" XXX standard disclaimer belongs here.... -.\" $Header: /cvsroot/pgsql/src/man/Attic/libpq.3,v 1.15 1998/04/07 18:12:56 momjian Exp $ +.\" $Header: /cvsroot/pgsql/src/man/Attic/libpq.3,v 1.16 1998/04/26 04:09:48 momjian Exp $ .TH LIBPQ INTRO 03/12/94 PostgreSQL PostgreSQL .SH DESCRIPTION Libpq is the programmer's interface to Postgres. Libpq is a set of @@ -556,7 +556,7 @@ int PQendcopy(PGconn *conn); .fi As an example: .nf -PQexec(conn, "create table foo (a int4, b char16, d float8)"); +PQexec(conn, "create table foo (a int4, b name, d float8)"); PQexec(conn, "copy foo from stdin"); PQputline(conn, "3<TAB>hello world<TAB>4.5\en"); PQputline(conn,"4<TAB>goodbye world<TAB>7.11\en"); |