ASA Programming Guide
Using Java in the Database
Installing Java classes into a database
It is useful and common practice to collect sets of related classes together in packages, and to store one or more packages in a JAR file.
You install a JAR file the same way as you install a class file. A JAR file can have the extension JAR or ZIP. Each JAR file must have a name in the database. Usually, you use the same name as the JAR file, without the extension. For example, if you install a JAR file named myjar.zip, you would generally give it a JAR name of myjar.
For more information, see INSTALL JAVA statement.
To install a JAR (Sybase Central)
Connect to a database with DBA authority.
Open the Java Objects folder for the database.
Right click in the right pane and choose New
Follow the instructions in the wizard.
To install a JAR (SQL)
Connect to a database with DBA authority.
Enter the following statement:
INSTALL JAVA NEW JAR 'jarname' FROM FILE 'path\\JarName.jar'