summaryrefslogtreecommitdiff
path: root/src/man/libpq.3
diff options
context:
space:
mode:
authorBruce Momjian1998-04-07 18:14:38 +0000
committerBruce Momjian1998-04-07 18:14:38 +0000
commitdb21523314fa5bbce7b6713469192dbf74533e25 (patch)
tree0ef66b02de60ad9e30e3094925108e195067d9b0 /src/man/libpq.3
parent6a3c751448980d29e7a8ed723adced303250fd12 (diff)
Back out char2-char16 removal. Add later.
Diffstat (limited to 'src/man/libpq.3')
-rw-r--r--src/man/libpq.34
1 files changed, 2 insertions, 2 deletions
diff --git a/src/man/libpq.3 b/src/man/libpq.3
index 77423866a7e..f10ac9f45e5 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.14 1998/03/30 17:25:55 momjian Exp $
+.\" $Header: /cvsroot/pgsql/src/man/Attic/libpq.3,v 1.15 1998/04/07 18:12:56 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 name, d float8)");
+PQexec(conn, "create table foo (a int4, b char16, 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");