invalid_cursor_exception

PHOTO EMBED

Sat Jun 08 2024 02:21:35 GMT+0000 (Coordinated Universal Time)

Saved by @signup

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