ACE Director Alum Daniel Morgan, founder of Morgan's Library, is scheduling
complimentary technical Workshops on Database Security for the first 30
Oracle Database customers located anywhere in North America, EMEA, LATAM, or
APAC that send an email to
asra_us@oracle.com. Request a Workshop for
your organization today.
Purpose
Finds a given object in the cache or (optionally) creates one if one is not found.
Finds a given object in the cache or (optionally) creates one if one is not found
dbms_result_cache_api.get(
key IN VARCHAR2,
value OUT NOCOPY RAW,
isPublic IN NUMBER DEFAULT 0,
noCreate IN NUMBER DEFAULT 0,
noFetch IN NUMBER DEFAULT 0)
RETURN NUMBER;
pragma interface(C, Get);
Finds a given object in the cache or (optionally) creates one if one is not found
dbms_result_cache_api.getc(
key IN VARCHAR2,
value OUT NOCOPY VARCHAR2,
isPublic IN NUMBER DEFAULT 0,
noCreate IN NUMBER DEFAULT 0,
noFetch IN NUMBER DEFAULT 0)
RETURN NUMBER;
pragma interface(C, GetC);