diff options
author | Julian Assange | 1996-07-25 06:21:11 +0000 |
---|---|---|
committer | Julian Assange | 1996-07-25 06:21:11 +0000 |
commit | 23c7ff0b3c38657081590430d08ef48bb5bde759 (patch) | |
tree | 1f37bc9a120f19d85dbe03a48fec59aa5b49457a /src | |
parent | 98ae3fadd10c48f8f1bdbee7025c6daf1806d122 (diff) |
PQprint() routines. The older code is still there for historical
compatibility. There isn't much difference here against my previous
PQprint() code, except that you can add optional arguments to the
<table args> in html.
Diffstat (limited to 'src')
-rw-r--r-- | src/interfaces/libpq/fe-exec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interfaces/libpq/fe-exec.c b/src/interfaces/libpq/fe-exec.c index 4ba528e10b3..fc2adef6692 100644 --- a/src/interfaces/libpq/fe-exec.c +++ b/src/interfaces/libpq/fe-exec.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-exec.c,v 1.5 1996/07/23 03:35:13 scrappy Exp $ + * $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-exec.c,v 1.6 1996/07/25 06:21:11 julian Exp $ * *------------------------------------------------------------------------- */ @@ -761,7 +761,7 @@ PQdisplayTuples(PGresult *res, * PQprintTuples() * * This is the routine that prints out the tuples that - * are returned from the backend. + * are returned from the backend. * Right now all columns are of fixed length, * this should be changed to allow wrap around for * tuples values that are wider. |