C0039 Compiler Error
Message text
Cursor/Procedure (procedure) has not been declared.
Explanation
The following script in a function generates C0039 because the
cursors li_a and abc have not been declared:
|
1 2 3 4 5 6 7 8 9 |
int li_a DECLARE curs CURSOR FOR SELECT employee.emp_id FROM employee WHERE employee.salary > 1000; OPEN curs; // compiles OPEN li_a; // generates C0039 OPEN abc; // generates C0039 |
The following script in a function generates C0039 because the
procedures li_a and abc have not been declared:
|
1 2 3 4 5 |
int li_a DECLARE proc PROCEDURE FOR procname; EXECUTE proc; // compiles EXECUTE li_a; // generates C0039 EXECUTE abc; // generates C0039 |
Document get from Powerbuilder help
Thank you for watching.
Subscribe
Login
0 Comments
Oldest