invalid_cursor

PHOTO EMBED

Sun May 26 2024 17:49:12 GMT+0000 (Coordinated Universal Time)

Saved by @exam123

declare
cursor c1 is select * from employee;
e employee%rowtype;
begin
 close c1;
exception 
    when invalid_cursor then
      dbms_output.put_line('invalid cursor');
end;
/
content_copyCOPY