December 2010
Intermediate to advanced
451 pages
11h 16m
English
You have created a Java stored procedure and loaded it into the database, and now you want to access it via PL/SQL.
Create a PL/SQL call specification for the Java class. The PL/SQL call specification will essentially wrap the call to the Java class, enabling you to have access to the class from PL/SQL. The following code demonstrates the creation of a call specification for the Java class that was created in Recipe 15-1 and loaded into the database in Recipe 15-2.
CREATE OR REPLACE PROCEDURE get_it_emps AS LANGUAGE JAVA
NAME 'Employees.getItEmps()';
To make the Java class accessible from the database, you must create a PL/SQL call specification (sometimes known ...
Read now
Unlock full access