SQL/MX Programming Manual for Java
SQLJ Error Messages
HP NonStop SQL/MX Programming Manual for Java—523726-003
D-43
Semantic Analysis (0201-000100—0201-022306)
0201-013100
Cause. An iterator declaration clause or the INTO clause of a SELECT statement
specified more column values than in the select list.
Effect. The SQLJ translator fails during semantic analysis.
Recovery. Check the iterator declaration or the INTO clause of the SELECT
statement, verify that each has the same number of column values as the select list,
and resubmit. For details, see Iterators and Result Sets on page 3-48 or Example—
SELECT INTO Statement on page 3-28 and the SQL/MX Reference Manual.
0201-013300
Cause. The stored procedure that you tried to call matches more than one entry in the
database.
Effect. The SQLJ translator fails during semantic analysis.
Recovery. Check the stored procedure name and its parameters and verify that only
one stored procedure exists in the database. See the SQL/MX Guide to Stored
Procedures in Java.
0201-013500
Cause. You did not specify a host variable of type java.sqlj.ResultSet in the
SQLJ CAST statement.
Effect. The SQLJ translator fails during semantic analysis.
Recovery. Resubmit by providing a host variable of the type java.sql.ResultSet
in the CAST statement. For details, see the Iterator Conversion Clause on page A-6
and Creating an Iterator From a JDBC Result Set on page 3-56.
[0201-013100] Select list has only total-num elements. Column
col #num is not available.
[0201-013300] Unable to resolve stored procedure
name - num
declarations match this call.
[0201-013500] Expected host variable of type
java.sql.ResultSet.