|
1 | 1 | <!-- |
2 | | -$Header: /cvsroot/pgsql/doc/src/sgml/ref/psql-ref.sgml,v 1.33 2000/05/12 00:54:52 momjian Exp $ |
| 2 | +$Header: /cvsroot/pgsql/doc/src/sgml/ref/psql-ref.sgml,v 1.34 2000/07/21 17:58:49 momjian Exp $ |
3 | 3 | Postgres documentation |
4 | 4 | --> |
5 | 5 |
|
@@ -491,8 +491,8 @@ testdb=> |
491 | 491 | <para> |
492 | 492 | The new query buffer is then re-parsed according to the normal rules of |
493 | 493 | <application>psql</application>, where the whole buffer is treated as |
494 | | - a single line. (Thus you cannot make<quote>scripts</quote> this way, |
495 | | -use <command>\i</command> for that.) This means also that |
| 494 | + a single line. (Thus you cannot make scripts this way. |
| 495 | +Use <command>\i</command> for that.) This means also that |
496 | 496 | if the query ends with (or rather contains) a semicolon, it is immediately |
497 | 497 | executed. In other cases it will merely wait in the query buffer. |
498 | 498 | </para> |
@@ -551,8 +551,8 @@ Tue Oct 26 21:40:57 CEST 1999 |
551 | 551 |
|
552 | 552 | <listitem> |
553 | 553 | <para> |
554 | | - Sets the field separator for unaligned query output. The default is <quote><literal>|</literal></quote> |
555 | | -(a <quote>pipe</quote> symbol). See also <command>\pset</command> for a generic way |
| 554 | + Sets the field separator for unaligned query output. The default is |
| 555 | +pipe (<literal>|</literal>). See also <command>\pset</command> for a generic way |
556 | 556 | of setting output options. |
557 | 557 | </para> |
558 | 558 | </listitem> |
@@ -1533,7 +1533,7 @@ Access permissions for database "test" |
1533 | 1533 | <para> |
1534 | 1534 | As of version 7.0, <application>psql</application> automatically issues a |
1535 | 1535 | password prompt whenever the backend requests password authentication. |
1536 | | - Because this is currently based on a<quote>hack</quote>, the automatic |
| 1536 | + Because this is currently based on a hack, the automatic |
1537 | 1537 | recognition might mysteriously fail, hence this option to force a prompt. |
1538 | 1538 | If no password prompt is issued and the backend requires password authentication |
1539 | 1539 | the connection attempt will fail. |
@@ -2148,7 +2148,7 @@ $ ./configure --with-includes=/opt/gnu/include --with-libs=/opt/gnu/lib ... |
2148 | 2148 |
|
2149 | 2149 | <para> |
2150 | 2150 | The first example shows how to spread a query over several lines of input. |
2151 | | - Notice the changing prompt. |
| 2151 | + Notice the changing prompt: |
2152 | 2152 | <programlisting> |
2153 | 2153 | testdb=> <userinput>CREATE TABLE my_table (</userinput> |
2154 | 2154 | testdb(> <userinput> first integer not null default 0,</userinput> |
@@ -2186,7 +2186,7 @@ peter@localhost testdb=> SELECT * FROM my_table; |
2186 | 2186 | </programlisting> |
2187 | 2187 | Notice how the int4 colums in right aligned while the text column in left aligned. |
2188 | 2188 | You can make this table look differently by using the <command>\pset</command> |
2189 | | - command. |
| 2189 | + command: |
2190 | 2190 | <programlisting> |
2191 | 2191 | peter@localhost testdb=> <userinput>\pset border 2</userinput> |
2192 | 2192 | Border style is 2. |
|