forked from dlee0113/oracle_pl_sql_programming
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path11g_frc_with_cc.sql
49 lines (44 loc) · 1.22 KB
/
11g_frc_with_cc.sql
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
/*
Demonstration of "automatic upgrading" to use of result cache
when upgrading to Oracle11g using Conditional Compilation....
*/
CREATE OR REPLACE PACKAGE emplu11g
IS
FUNCTION onerow (employee_id_in IN employees.employee_id%TYPE)
RETURN employees%ROWTYPE
$IF dbms_db_version.version >= 11
$THEN
result_cache
$END
;
END;
/
CREATE OR REPLACE PACKAGE BODY emplu11g
IS
FUNCTION onerow (employee_id_in IN employees.employee_id%TYPE)
RETURN employees%ROWTYPE
$IF dbms_db_version.version >= 11
$THEN
result_cache relies_on (employees)
$END
IS
onerow_rec employees%ROWTYPE;
BEGIN
$IF dbms_db_version.version >= 11
$THEN
$ERROR 'Review this use of RESULT_CACHE! Ask Steven for more info.'
$END
SELECT *
INTO onerow_rec
FROM employees
WHERE employee_id = employee_id_in;
RETURN onerow_rec;
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/
*/