Contents Index Installing a class Updating classes and Jars

ASA Programming Guide
  Using Java in the Database
    Installing Java classes into a database

Installing a JAR


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)

  1. Connect to a database with DBA authority.

  2. Open the Java Objects folder for the database.

  3. Right click in the right pane and choose New > Jar File from the popup menu.

  4. Follow the instructions in the wizard.

To install a JAR (SQL)

  1. Connect to a database with DBA authority.

  2. Enter the following statement:

    INSTALL JAVA NEW
    JAR 'jarname'
    FROM FILE 'path\\JarName.jar'

Contents Index Installing a class Updating classes and Jars