0 votes
in PL/SQL by
Why Does Sql%isopen Always Returns The False Value?

1 Answer

0 votes
by

SQL is the name of the implicit cursor, which is always opened when the database executes the SQL statement. SQL%ISOPEN always evaluates to FALSE as ORACLE closes the implicit cursor as soon as it executes the query.

...