forked from dlee0113/oracle_pl_sql_programming
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path10g_authors.pkg
57 lines (49 loc) · 1.41 KB
/
10g_authors.pkg
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
CREATE OR REPLACE PACKAGE authors_pkg
IS
steven_authors strings_nt
:= strings_nt ('ROBIN HOBB'
, 'ROBERT HARRIS'
, 'DAVID BRIN'
, 'SHERI S. TEPPER'
, 'CHRISTOPHER ALEXANDER'
);
veva_authors strings_nt
:= strings_nt ('ROBIN HOBB'
, 'SHERI S. TEPPER'
, 'ANNE MCCAFFREY'
);
eli_authors strings_nt
:= strings_nt ( 'SHERI S. TEPPER'
, 'DAVID BRIN'
);
PROCEDURE show_authors (
title_in IN VARCHAR2
, authors_in IN strings_nt
);
END;
/
SHO ERR
CREATE OR REPLACE PACKAGE BODY authors_pkg
IS
PROCEDURE show_authors (
title_in IN VARCHAR2
, authors_in IN strings_nt
)
IS
BEGIN
DBMS_OUTPUT.put_line (title_in);
FOR indx IN authors_in.FIRST .. authors_in.LAST
LOOP
DBMS_OUTPUT.put_line (indx || ' = ' || authors_in (indx));
END LOOP;
DBMS_OUTPUT.put_line ('_');
END show_authors;
END;
/
SHO ERR
/*======================================================================
| 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/
*/