File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed
4-control-structures/3-flow-control Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -40,7 +40,8 @@ create or replace package body my_package is
4040 end loop check_pw_char;
4141 end loop check_digit;
4242
43- << check_other_things>> null ;
43+ << check_other_things>>
44+ null ;
4445
4546 if not l_isdigit then
4647 raise_application_error(co_errno,co_errmsg);
@@ -79,7 +80,8 @@ create or replace package body my_package is
7980 end loop check_pw_char;
8081 end loop check_digit;
8182
82- << check_other_things>> null ;
83+ << check_other_things>>
84+ null ;
8385
8486 if not l_isdigit then
8587 raise_application_error(co_errno,co_errmsg);
@@ -96,7 +98,7 @@ create or replace package body my_package is
9698 procedure password_check(in_password in varchar2 ) is
9799 co_digitpattern constant string(10 char ) := ' \d ' ;
98100 co_errno constant simple_integer := - 20501 ;
99- co_errmsg constant string(100 char ) := ' Password must contain a digit.' ;
101+ co_errmsg constant string(100 char ) := ' Password must contain a digit.' ;
100102 begin
101103 if not regexp_like(in_password,co_digitpattern) then
102104 raise_application_error(co_errno,co_errmsg);
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ exception
1919 when too_many_rows then
2020 my_package .some_further_processing ();
2121 when others then
22- if sqlcode = co_no_data_found then
22+ if sqlcode = co_no_data_found then
2323 null ;
2424 end if;
2525end;
You can’t perform that action at this time.
0 commit comments