diff options
author | Bruce Momjian | 1996-10-03 15:50:10 +0000 |
---|---|---|
committer | Bruce Momjian | 1996-10-03 15:50:10 +0000 |
commit | 2e9010cd8aee2fab1c5be8bed7a93ee6fbc84e9b (patch) | |
tree | 8a5ade8b27a697a899c826ffb21d8da9a377deea /doc/man/fetch.l | |
parent | 4bec96f16f48f034ac4d39cb272ee6c228d05193 (diff) |
Renamed createdb.l to create_database.l.
Changed portal to cursor.
Diffstat (limited to 'doc/man/fetch.l')
-rw-r--r-- | doc/man/fetch.l | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/man/fetch.l b/doc/man/fetch.l index c5a867ac45e..8e9aadcdc53 100644 --- a/doc/man/fetch.l +++ b/doc/man/fetch.l @@ -1,6 +1,6 @@ .\" This is -*-nroff-*- .\" XXX standard disclaimer belongs here.... -.\" $Header: /cvsroot/pgsql/doc/man/Attic/fetch.l,v 1.1.1.1 1996/08/18 22:14:24 scrappy Exp $ +.\" $Header: /cvsroot/pgsql/doc/man/Attic/fetch.l,v 1.2 1996/10/03 15:49:53 momjian Exp $ .TH FETCH SQL 01/23/93 Postgres95 Postgres95 .SH NAME fetch \(em fetch instance(s) from a cursor @@ -31,7 +31,7 @@ cursor updates back to base classes is impossible in general as with view updates. Consequently, users must issue explicit replace commands to update data. .PP -Portals may only be used inside of transaction blocks marked by +Cursors may only be used inside of transaction blocks marked by .IR begin (l) and .IR end (l) @@ -42,19 +42,19 @@ because the data that they store spans multiple user queries. --set up and use a cursor -- begin - declare myportal cursor for + declare mycursor cursor for select * from pg-user end .fi .nf -- ---Fetch all the instances available in the portal FOO +--Fetch all the instances available in the cursor FOO -- fetch all in FOO .fi .nf -- ---Fetch 5 instances backward in the portal FOO +--Fetch 5 instances backward in the cursor FOO -- fetch backward 5 in FOO .fi |