forked from dlee0113/oracle_pl_sql_programming
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbidir.tst
37 lines (31 loc) · 960 Bytes
/
bidir.tst
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
BEGIN
-- Not necessary: initialization section does it: Bidir.loadarray;
bidir.accumulate;
bidir.showmaxsal;
bidir.showminsal;
bidir.showall;
DECLARE
l_employee employees%ROWTYPE;
BEGIN
LOOP
EXIT WHEN bidir.end_of_data;
l_employee := bidir.currrow;
DBMS_OUTPUT.put_line (l_employee.last_name);
bidir.nextrow;
END LOOP;
bidir.setrow (bidir.lastrow);
LOOP
EXIT WHEN bidir.end_of_data;
l_employee := bidir.currrow;
DBMS_OUTPUT.put_line (l_employee.last_name);
bidir.prevrow;
END LOOP;
END;
END;
/
/*======================================================================
| Supplement to the fifth edition of Oracle PL/SQL Programming by Steven
| Feuerstein with Bill Pribyl, Copyright (c) 1997-2009 O'Reilly Media, Inc.
| To submit corrections or find more code samples visit
| http://oreilly.com/catalog/9780596514464/
*/