Install the sample Java class

Java classes must be installed into a database before they can be used. You can install classes from Sybase Central or Interactive SQL.

 To install the class to the SQL Anywhere sample database (Sybase Central)
  1. Start Sybase Central and connect to the sample database.

  2. In the left pane, expand the External Environments folder.

  3. Click Java.

  4. Choose File » New » Java Class.

  5. Click Browse and browse to the location of Invoice.class.

  6. Click Finish.

 To install the class to the SQL Anywhere sample database (Interactive SQL)
  1. Start Interactive SQL and connect to the sample database.

  2. In the SQL Statements pane of Interactive SQL, type the following statement:

    INSTALL JAVA NEW 
    FROM FILE 'path\\Invoice.class';

    Here path is the location of your compiled class file.

  3. Press F5 to execute the statement.

The class is now installed into the sample database.

 Notes