ALLBASE/SQL Message Manual (36216-90213)
142 Chapter5
ALLBASE/SQL Error Messages: 2101-2419
(non-LONG) data type for each parameter.
2232 MESSAGE Duplicate parameter !. (DBERR 2232)
CAUSE You specified a parameter name twice in the CREATE
PROCEDURE statement.
ACTION Issue the statement again, specifying unique parameter
names.
2233 MESSAGE OUTPUT specified for a parameter not declared
as OUTPUT. (DBERR 2233)
CAUSE In the EXECUTE PROCEDURE statement, you specified
OUTPUT for a non- OUTPUT parameter.
ACTION Re-issue the EXECUTE PROCEDURE statement,
specifying OUTPUT only for parameters that were
declared as OUTPUT parameters in the CREATE
PROCEDURE statement. If necessary, recreate the
procedure specifying OUTPUT for this parameter.
2234 MESSAGE No value was provided for non-nullable
parameter ! in procedure !.!. (DBERR 2234)
CAUSE A parameter declared as NOT NULL in the CREATE
PROCEDURE statement was not provided with a value in
the EXECUTE PROCEDURE statement.
ACTION Re-issue the EXECUTE PROCEDURE statement,
providing a value for each parameter declared as NOT
NULL.
2235 MESSAGE Error occurred executing procedure !.!
statement !. (DBERR 2235)
CAUSE An error occurred during procedure execution.
ACTION Refer to the accompanying error message. Use the
statement number to determine which procedure
statement caused the error.
2236 MESSAGE Doubly defined LABEL !. (DBERR 2236)
CAUSE You used the same label more than once in a CREATE
PROCEDURE statement.
ACTION Remove the duplicate label definition, and reissue the
CREATE PROCEDURE statement.
2237 MESSAGE Undefined LABEL !. (DBERR 2237)
CAUSE You refer to an undefined label in a GOTO statement in
the CREATE PROCEDURE statement.
ACTION Define the label within the CREATE PROCEDURE
statement.
2238 MESSAGE Error occurred during evaluation of the