Can we use SQL%ISOPEN in implicit cursors? Does this
attribute works properly in Implicit Curosors?
Answer Posted / pr@$@d
Implicit cursors: SQL%ISOPEN always returns FALSE,
indicating that the implicit cursor has been closed.
I hope below example gives you very fair idea.
SQL> BEGIN
2 UPDATE employee
3 SET salary = salary *2
4 WHERE id = '01';
5
6 IF not SQL%ISOPEN THEN
7 DBMS_OUTPUT.PUT_LINE('closed');
8 END IF;
9 END;
10 /
closed
PL/SQL procedure successfully completed.
Thanks
-Pr@$@d
| Is This Answer Correct ? | 13 Yes | 6 No |
Post New Answer View All Answers
What is an alias command?
Can you join views in sql?
Why we use join in sql?
What is percent sign in sql?
What is the difference between partition and index?
What is data definition language?
What is nvarchar in sql?
How many types of tables are there?
What is a schema? How is it useful in sql servers?
Is id a reserved word in sql?
How long will it take to learn pl sql?
how can we submit a form without a submit button? : Sql dba
how to use myisamchk to check or repair myisam tables? : Sql dba
what are the differences between require and include, include_once and require_once? : Sql dba
What is the function that is used to transfer a pl/sql table log to a database table?