ALLBASE/SQL Message Manual (36216-90213)

Chapter 8 263
ALLBASE/SQL Error Messages: 8221-10999
CAUSE The SQL statement referenced a cursor which had not
been declared.
ACTION Insert a DECLARE CURSOR statement before
referencing the cursor and re-preprocess your program.
10960 MESSAGE Insufficient input host variables. (DBERR
10960)
CAUSE You specified too few input host variables in the OPEN
statement to cover the columns specified in the cursor
declaration.
ACTION Make sure that there is a host variable listed for each
column specified and re-preprocess your program.
10961 MESSAGE Too many input host variables. (DBERR 10961)
CAUSE You specified too many host variables in the OPEN
statement for the number of columns specified in the
cursor declaration.
ACTION Make sure that there is a column specified for each host
variable listed and re-preprocess your program.
10962 MESSAGE Command name must be a single identifier.
(DBERR 10962)
CAUSE You qualified a command name with the owner or module
name.
ACTION Delete the command name qualification.
10963 MESSAGE This command already used. (DBERR 10963)
CAUSE You attempted to PREPARE a statement using a
command name which has already been used in another
PREPARE statement.
ACTION Modify one of the PREPARE statements to specify a
unique command name and re-preprocess your program.
10964 MESSAGE The host variable must be of type STRING or
PAC. (DBERR 10964)
CAUSE You specified host variables which were not of the string or
packed array type.
ACTION Modify the DECLARE section of your host variable so that
the host variable is of the string or packed array type.
Refer to the ALLBASE/Pascal Application Programming
Guide for additional information.
10965 MESSAGE Character string is too long. (DBERR 10965)
CAUSE A string literal you specified in a PREPARE or EXECUTE
IMMEDIATE statement exceeded the maximum limit of
2048 characters.