ml_add_java_connection_script system procedure

Use this system procedure to register or unregister a Java method as the script for a connection event.

Syntax
ml_add_java_connection_script ( 
'version', 
'event', 
'script'  
)
Parameters

Syntax

Description

version

VARCHAR(128). The version name.

event

VARCHAR(128). The event name.

script

TEXT. The script contents. For Adaptive Server Enterprise, this parameter is VARCHAR(16384). For Adaptive Server Enterprise prior to 12.5, this parameter is VARCHAR(255). For DB2 LUW, this parameter is VARCHAR(4000). For Oracle, this parameter is CLOB.

Remarks

To unregister a method, set the script contents parameter to null.

The script value is a public method in a class in the MobiLink server classpath (for example, MyClass.MyMethod).

When you ml_add_java_connection_script, the method is associated with the event and script version that you specify. If the version name is new, it is automatically inserted into the ml_version table.

For DB2 mainframe consolidated database types, this procedure is called ml_add_jcs. See IBM DB2 mainframe system procedure name conversions.

See also
Example

The following example registers the endConnection method of the CustEmpScripts class for the end_connection event.

call ml_add_java_connection_script( 'ver1',
'end_connection',
'CustEmpScripts.endConnection' )