Oracle8i
Java Stored Procedures Developer's Guide Release 2 (8.1.6) Part Number A81358-01 |
|
Before you can call Java stored procedures, you must load them into the Oracle database and publish them to SQL. Loading and publishing are separate tasks. Many Java classes, referenced only by other Java classes, are never published.
To load Java stored procedures automatically, you use the command-line utility loadjava
. It uploads Java source, class, and resource files into a system-generated database table, then uses the SQL CREATE
JAVA
{SOURCE
|
CLASS
|
RESOURCE}
statement to load the Java files into the Oracle database. You can upload Java files from OS file systems, popular Java IDEs, intranets, or the Internet.
Note: To load Java stored procedures manually, you use CREATE
JAVA
statements. For example, in SQL*Plus, you can use the CREATE
JAVA
CLASS
statement to load Java class files from local BFILE
s and LOB
columns into the Oracle database. For more information, see the Oracle8i SQL Reference.
|
![]() Copyright © 1996-2000, Oracle Corporation. All Rights Reserved. |
|