summaryrefslogtreecommitdiff
path: root/src/man/move.l
diff options
context:
space:
mode:
authorBruce Momjian1998-03-23 15:09:43 +0000
committerBruce Momjian1998-03-23 15:09:43 +0000
commit817fc4b2ac231181241a1c28a0d861166cf8bb00 (patch)
tree9aedb0082718c9c3b8a4495a49dc5206c26fd118 /src/man/move.l
parent137d3428de95be51f92f956fb0f85b810d424158 (diff)
Manual page fixes.
Diffstat (limited to 'src/man/move.l')
-rw-r--r--src/man/move.l18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/man/move.l b/src/man/move.l
index 0617cd5bb1..ab00825455 100644
--- a/src/man/move.l
+++ b/src/man/move.l
@@ -1,6 +1,6 @@
.\" This is -*-nroff-*-
.\" XXX standard disclaimer belongs here....
-.\" $Header: /cvsroot/pgsql/src/man/Attic/move.l,v 1.2 1998/01/11 22:17:44 momjian Exp $
+.\" $Header: /cvsroot/pgsql/src/man/Attic/move.l,v 1.3 1998/03/23 15:09:41 momjian Exp $
.TH MOVE SQL 01/23/93 PostgreSQL PostgreSQL
.SH NAME
move - move cursor position
@@ -19,26 +19,26 @@ command: it fetches instances, but put them nowhere.
--
--set up and use a cursor
--
-begin
- declare mycursor cursor for
- select * from pg-user;
+begin work;
+declare mycursor cursor for
+ select * from pg-user;
--
--Move for 5 instances in the cursor FOO
--
- move 5 in FOO;
+move 5 in FOO;
--
--Fetch 6th instance in the cursor FOO
--
- fetch 1 in FOO;
+fetch 1 in FOO;
--
--close
--
- close foo;
-end;
+close foo;
+commit;
.fi
.SH "SEE ALSO"
begin(l),
-end(l),
+commit(l),
close(l),
fetch(l),
select(l).