Calling Java from PL/SQL

Contents:
Oracle8i and Java
Getting Ready to Use Java in Oracle
Simple Demonstration
Using loadjava
Using dropjava
Managing Java in the Database
Using DBMS_JAVA and DBMS_JAVA_TEST
Publishing and Using Java in PL/SQL
Examples

Now, I explore the exciting new feature of Oracle8i that allows a developer to call Java stored procedures (JSPs) from within PL/SQL. Java is a very powerful language, much more robust in many ways than PL/SQL. Java also offers hundreds of classes that provide clean, easy-to-use application developing interface (APIs) to a wide variety of functionality.

Oracle8i and Java

In Oracle8i, Oracle includes a new product called JServer, which consists of the following elements:

The Aurora JVM executes Java methods (also known as Java stored procedures) and classes if they were stored in the database itself.

Java in the Oracle database is a big topic; Java developing all by itself is an even bigger topic. Complete treatment of either is outside the scope of this tutorial. My objectives for this chapter are limited to the following:

To access Java class methods from within Oracle, you must take the following steps:

  1. Create the Java code elements. You can do this in Oracle's JDeveloper, or in any other Java Integrated Development Environment. (notepad.exe will also, of course, do the trick in a pinch!)
  2. Load the Java class(es) into Oracle using the loadjava command-line utility or the CREATE JAVA statement.
  3. Publish the Java class methods inside PL/SQL by writing wrapper programs in PL/SQL around the Java code.
  4. Grant privileges as required on the PL/SQL wrapper programs and the Java class referenced by the PL/SQL wrapper.
  5. Call the PL/SQL programs from any one of a number of environments, as illustrated in Figure 9.1.

Oracle8i offers a variety of components and commands to work with Java. Table 9.1 summarizes these different elements.

Oracle8i Components and Commands for Java
Component Description
Aurora JVM The Java Virtual Machine (JVM) that Oracle implemented in its database server
loadjava An operating system command-line utility that loads your Java code elements (classes, .jar files, etc.) into the Oracle database
dropjava An operating system command-line utility that drops your Java code elements (classes, .jar files, etc.) from the Oracle database
CREATE JAVA

DROP JAVA

ALTER JAVA

New DDL statements that perform some of the same tasks as loadjava and dropjava
DBMS_JAVA A built-in package that offers a number of utilities to set options and other aspects of the JVM
DBMS_JAVA_TEST A built-in package you can use to more easily test your JSPs
JPublisher A utility used to build Java classes around object types and REFs defined in the Oracle database

Figure 9.1: Accessing JSPs from within the Oracle database

Figure 9.1

The remainder of this chapter explains the steps outlined earlier and the components in Table 9.1. For more thorough coverage of Java in the Oracle database, please consult the Oracle documentation.