Neoview Messages Manual (Volume 1) (R2.5)

SQL 11232
11232 The Java method method-name in Java class class-name is not defined
as static.
method-name
is the Java method name specified in the EXTERNAL NAME clause of a
CREATE PROCEDURE statement.
class-name
is the Java class name specified in the EXTERNAL NAME clause of a
CREATE PROCEDURE statement.
Cause During the execution of a CREATE PROCEDURE statement, a method named
method-name was found in the specified Java class, but the method did not have the static
attribute.
Effect The operation fails.
Recovery Correct the signature of the SPJ method, and resubmit.
SQL 11233
11233 The return type for Java method method-name in Java class
class-name is not void.
method-name
is the Java method name specified in the EXTERNAL NAME clause of a
CREATE PROCEDURE statement.
class-name
is the Java class name specified in the EXTERNAL NAME clause of a
CREATE PROCEDURE statement.
Cause During the execution of a CREATE PROCEDURE statement, a method named
method-name was found in the specified Java class, but the method had a return type other
than void.
Effect The operation fails.
Recovery Correct the signature of the SPJ method, and resubmit.
SQL 11234
11234 The Java method method-name(signature) was not found in Java class
class-name.
method-name
is the Java method name specified in the EXTERNAL NAME clause of a
CREATE PROCEDURE statement.
signature
is a Java type signature.
class-name
is the Java class name specified in the EXTERNAL NAME clause of a
CREATE PROCEDURE statement.
Cause During the execution of a CREATE PROCEDURE statement, the SPJ method could
not be found in the specified Java class. The SPJ method must be named
class-name.method-name and must have a Java type signature matching the declared SQL
parameter types. If the DYNAMIC RESULT SETS clause specifies a value greater than 0 (zero),
the SPJ method must also have one or more trailing java.sql.ResultSet[] parameters.
Effect The operation fails.
Recovery Ensure that the SPJ method exists in the specified class file, and resubmit.
SQL 11235
11235 The Language Manager encountered an unexpected error trying to
retrieve information for the result set at position parameter-position
in the Java method signature.
parameter-position
is the position of the result set parameter in the Java method
signature.
248 Trigger, UDR Server, and Language Manager Messages (11000 Through 11399)