Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.

SQL Anywhere 10.0.1 » SQL Anywhere Server - Programming » Tutorial: Using Java in the Database » Installing Java classes into a database

Installing a class Next Page

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 the database as a DBA user.

  2. Open the Java Objects folder for the database.

  3. Right-click 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 as a DBA user.

  2. Execute the following statement:

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