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 the difference between truncate and drop statements?
What is difference between ms sql and mysql?
What are inner and outer joins examples of both?
What is scalar data type in pl sql?
how would concatenate strings in mysql? : Sql dba
What is sql mysql pl sql oracle?
what is a unique key ? : Sql dba
How do I edit a trigger in sql developer?
What is snowflake sql?
What is sql performance tuning?
Mention what is the function that is used to transfer a pl/sql table log to a database table?
Is sql harder than python?
What is mdb stand for?
What is the difference between mdf and ndf files?
what are the differences between public, private, protected, static, transient, final and volatile? : Sql dba