From 03a321d2143cd1168d10960cada9d688c5140520 Mon Sep 17 00:00:00 2001 From: "Thomas G. Lockhart" Date: Sat, 8 Dec 2001 03:24:40 +0000 Subject: Use PostgreSQL consistantly throughout docs. Before, usage was split evenly between Postgres and PostgreSQL. --- doc/src/sgml/ref/psql-ref.sgml | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) (limited to 'doc/src/sgml/ref/psql-ref.sgml') diff --git a/doc/src/sgml/ref/psql-ref.sgml b/doc/src/sgml/ref/psql-ref.sgml index 55c71a39b1..230e11013b 100644 --- a/doc/src/sgml/ref/psql-ref.sgml +++ b/doc/src/sgml/ref/psql-ref.sgml @@ -1,6 +1,6 @@ @@ -37,8 +37,8 @@ Postgres documentation psql is a terminal-based front-end to - Postgres. It enables you to type in queries - interactively, issue them to Postgres, and see + PostgreSQL. It enables you to type in queries + interactively, issue them to PostgreSQL, and see the query results. Alternatively, input can be from a file. In addition, it provides a number of meta-commands and various shell-like features to facilitate writing scripts and automating a wide @@ -64,7 +64,7 @@ Postgres documentation Connecting To A Database - psql is a regular Postgres + psql is a regular PostgreSQL client application. In order to connect to a database you need to know the name of your target database, the hostname and port number of the server and what user name you want to connect as. psql can be @@ -334,7 +334,7 @@ testdb=> \copyright - Shows the copyright and distribution terms of Postgres. + Shows the copyright and distribution terms of PostgreSQL. @@ -406,7 +406,7 @@ testdb=> - Postgres stores the object descriptions in the + PostgreSQL stores the object descriptions in the pg_description system table. @@ -662,7 +662,7 @@ pipe (|). See also \pset for a generic way List all the databases in the server as well as their owners. Append a + to the command name to see any descriptions - for the databases as well. If your Postgres + for the databases as well. If your PostgreSQL installation was compiled with multibyte encoding support, the encoding scheme of each database is shown as well. @@ -702,7 +702,7 @@ pipe (|). See also \pset for a generic way - Stores the file into a Postgres large object. + Stores the file into a PostgreSQL large object. Optionally, it associates the given comment with the object. Example: foo=> \lo_import '/home/peter/pictures/photo.xcf' 'a picture of me' @@ -734,7 +734,7 @@ lo_import 152801 \lo_list - Shows a list of all Postgres large + Shows a list of all PostgreSQL large objects currently stored in the database, along with any comments provided for them. @@ -1718,7 +1718,7 @@ bar When this variable is set and a backslash command queries the database, the query - is first shown. This way you can study the Postgres + is first shown. This way you can study the PostgreSQL internals and provide similar functionality in your own programs. If you set the variable to the value noexec, the queries are just shown but are not actually sent to the backend and executed. @@ -1814,7 +1814,7 @@ bar LO_TRANSACTION - If you use the Postgres large object + If you use the PostgreSQL large object interface to specially store data that does not fit into one tuple, all the operations must be contained in a transaction block. (See the documentation of the large object interface for more information.) Since @@ -1983,7 +1983,7 @@ testdb=> \set content '\'' `sed -e "s/'/\\\\\\'/g" < my_file.txt` '\' case you can escape a colon with a backslash to protect it from interpretation. (The colon syntax for variables is standard SQL for embedded query languages, such as ecpg. The colon syntax for - array slices and type casts are Postgres extensions, + array slices and type casts are PostgreSQL extensions, hence the conflict.) @@ -2168,7 +2168,7 @@ $endif If you have the readline library installed but psql - does not seem to use it, you must make sure that Postgres's + does not seem to use it, you must make sure that PostgreSQL's top-level configure script finds it. configure needs to find both the library libreadline.a (or a shared library equivalent) @@ -2202,7 +2202,7 @@ $ ./configure --with-includes=/opt/gnu/include --with-libs=/opt/gnu/lib ... This section only shows a few examples specific to psql. If you want to learn SQL or get familiar with - Postgres, you might wish to read the Tutorial that + PostgreSQL, you might wish to read the Tutorial that is included in the distribution. -- cgit v1.2.1