DROP JAVACLASS

DROP JAVACLASS — unloads a javaclass

Syntax

DROP JAVACLASS classid [ IF EXISTS ];

Description

Unload the named JAR previously used to implement a Java stored procedure.

Parameters

classid

The ID used to identify the JAR archive during the creation of a Java stored procedure. See Using Embedded Java Stored Procedures.

Example

Create a Javaclass. Drop the javaclass.

CREATE JAVACLASS firstprocid FROM 'test.jar';

DROP JAVACLASS firstprocid IF EXISTS;