Postgres95 to PostgreSQL.
This commit is contained in:
parent
7af262d2a7
commit
1b929d1749
@ -1,13 +1,13 @@
|
|||||||
/*-------------------------------------------------------------------------
|
/*-------------------------------------------------------------------------
|
||||||
*
|
*
|
||||||
* psql.c--
|
* psql.c--
|
||||||
* an interactive front-end to postgres95
|
* an interactive front-end to postgreSQL
|
||||||
*
|
*
|
||||||
* Copyright (c) 1996, Regents of the University of California
|
* Copyright (c) 1996, Regents of the University of California
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* IDENTIFICATION
|
||||||
* $Header: /cvsroot/pgsql/src/bin/psql/Attic/psql.c,v 1.37 1996/12/01 20:28:39 momjian Exp $
|
* $Header: /cvsroot/pgsql/src/bin/psql/Attic/psql.c,v 1.38 1996/12/11 22:57:34 momjian Exp $
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
@ -1536,9 +1536,9 @@ main(int argc, char **argv)
|
|||||||
exit(listAllDbs(&settings));
|
exit(listAllDbs(&settings));
|
||||||
}
|
}
|
||||||
if (!settings.quiet && !singleQuery && !qfilename) {
|
if (!settings.quiet && !singleQuery && !qfilename) {
|
||||||
printf("Welcome to the POSTGRES95 interactive sql monitor:\n");
|
printf("Welcome to the POSTGRESQL interactive sql monitor:\n");
|
||||||
printf(" Please read the file COPYRIGHT for copyright terms "
|
printf(" Please read the file COPYRIGHT for copyright terms "
|
||||||
"of POSTGRES95\n\n");
|
"of POSTGRESQL\n\n");
|
||||||
printf(" type \\? for help on slash commands\n");
|
printf(" type \\? for help on slash commands\n");
|
||||||
printf(" type \\q to quit\n");
|
printf(" type \\q to quit\n");
|
||||||
printf(" type \\g or terminate with semicolon to execute query\n");
|
printf(" type \\g or terminate with semicolon to execute query\n");
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
.\" This is -*-nroff-*-
|
.\" This is -*-nroff-*-
|
||||||
.\" XXX standard disclaimer belongs here....
|
.\" XXX standard disclaimer belongs here....
|
||||||
.\" $Header: /cvsroot/pgsql/src/man/Attic/pg_dump.1,v 1.3 1996/12/11 00:27:59 momjian Exp $
|
.\" $Header: /cvsroot/pgsql/src/man/Attic/pg_dump.1,v 1.4 1996/12/11 22:58:11 momjian Exp $
|
||||||
.TH PG_DUMP UNIX 1/20/96 PostgreSQL PostgreSQL
|
.TH PG_DUMP UNIX 1/20/96 PostgreSQL PostgreSQL
|
||||||
.SH NAME
|
.SH NAME
|
||||||
pg_dump \(em dumps out a Postgres database into a script file
|
pg_dump \(em dumps out a Postgres database into a script file
|
||||||
@ -55,7 +55,7 @@ for textual editing.
|
|||||||
.PP
|
.PP
|
||||||
.IR "pg_dump"
|
.IR "pg_dump"
|
||||||
is useful for dumping out the contents of a database to move from one
|
is useful for dumping out the contents of a database to move from one
|
||||||
postgres95 installation to another. After running
|
postgreSQL installation to another. After running
|
||||||
.IR "pg_dump"
|
.IR "pg_dump"
|
||||||
, one should examine the output script file for any warnings, especially
|
, one should examine the output script file for any warnings, especially
|
||||||
in light of the limitations listed below.
|
in light of the limitations listed below.
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
.\" This is -*-nroff-*-
|
.\" This is -*-nroff-*-
|
||||||
.\" XXX standard disclaimer belongs here....
|
.\" XXX standard disclaimer belongs here....
|
||||||
.\" $Header: /cvsroot/pgsql/src/man/Attic/postgres.1,v 1.3 1996/12/11 00:28:00 momjian Exp $
|
.\" $Header: /cvsroot/pgsql/src/man/Attic/postgres.1,v 1.4 1996/12/11 22:58:14 momjian Exp $
|
||||||
.TH POSTGRES95 UNIX 11/05/95 Postgres95 Postgres95
|
.TH POSTGRES95 UNIX 12/08/96 Postgres95 Postgres95
|
||||||
.SH NAME
|
.SH NAME
|
||||||
postgres \(em the Postgres backend server
|
postgres \(em the Postgres backend server
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
.\" This is -*-nroff-*-
|
.\" This is -*-nroff-*-
|
||||||
.\" XXX standard disclaimer belongs here....
|
.\" XXX standard disclaimer belongs here....
|
||||||
.\" $Header: /cvsroot/pgsql/src/man/Attic/psql.1,v 1.4 1996/12/11 00:28:03 momjian Exp $
|
.\" $Header: /cvsroot/pgsql/src/man/Attic/psql.1,v 1.5 1996/12/11 22:58:16 momjian Exp $
|
||||||
.TH PSQL UNIX 1/20/96 PostgreSQL PostgreSQL
|
.TH PSQL UNIX 1/20/96 PostgreSQL PostgreSQL
|
||||||
.SH NAME
|
.SH NAME
|
||||||
psql \(em run the interactive query front-end
|
psql \(em run the interactive query front-end
|
||||||
@ -209,8 +209,8 @@ In normal operation, psql provides a prompt with the name of the
|
|||||||
database that psql is current connected to followed by the string "=>".
|
database that psql is current connected to followed by the string "=>".
|
||||||
For example,
|
For example,
|
||||||
.nf
|
.nf
|
||||||
Welcome to the POSTGRES95 interactive sql monitor:
|
Welcome to the POSTGRESQL interactive sql monitor:
|
||||||
Please read the file COPYRIGHT for copyright terms of POSTGRES95
|
Please read the file COPYRIGHT for copyright terms of POSTGRESQL
|
||||||
|
|
||||||
type \e? for help on slash commands
|
type \e? for help on slash commands
|
||||||
type \eq to quit
|
type \eq to quit
|
||||||
|
Loading…
x
Reference in New Issue
Block a user