Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c8cd32 commit bbb9020Copy full SHA for bbb9020
1 file changed
source/expectations/data_values/ut_data_value_anydata.tpb
@@ -107,6 +107,14 @@ create or replace type body ut_data_value_anydata as
107
raise cursor_not_open;
108
end if;
109
110
+ exception
111
+ when cursor_not_open then
112
+ raise_application_error(-20155, 'Cursor is not open');
113
+ when others then
114
+ if l_refcursor%isopen then
115
+ close l_refcursor;
116
+ end if;
117
+ raise;
118
end;
119
120
member function get_instance(a_data_value anydata) return varchar2 is
0 commit comments