Flashnux

GNU/Linux man pages

Livre :
Expressions régulières,
Syntaxe et mise en oeuvre :

ISBN : 978-2-7460-9712-4
EAN : 9782746097124
(Editions ENI)

GNU/Linux

RedHat 5.2

(Apollo)

move(l)


MOVE

MOVE

NAME
SYNOPSIS
DESCRIPTION
EXAMPLE
SEE ALSO

NAME

move - move cursor position

SYNOPSIS

move [ (forward | backward) ] [ ( number | all) ] [in cursor_name]

DESCRIPTION

Move allows a user to move cursor position for specified number of instances. Move works like fetch command: it fetches instances, but put them nowhere.

EXAMPLE

--
--set up and use a cursor
--
begin work;
declare mycursor cursor for
select * from pg-user;
--
--Move for 5 instances in the cursor FOO
--
move 5 in FOO;
--
--Fetch 6th instance in the cursor FOO
--
fetch 1 in FOO;
--
--close
--
close foo;
commit;

SEE ALSO

begin(l), commit(l), close(l), fetch(l), select(l).



move(l)