Previous Topic: -302 - INVALID USE OF PARAMETER MARKERNext Topic: -304 - CANNOT DESCRIBE UNPREPARED STATEMENT statement_name


-303 - STATEMENT-NAME OF CURSOR cursor_name NOT PREPARED SELECT STATEMENT

Explanation

The SQL statement referenced by the cursor_name displayed in the error message was executed without preparing it. An SQL statement must be prepared before execution.

The SQLSTATE that equates to this SQL return code is 07S03.

User Response

Prepare the statement for the cursor_name displayed in the message before executing it or remove the prepare.