|
-
Hi Hrishy,
Either way, it is still shwoing false.
SQL> show serveroutput
serveroutput ON SIZE UNLIMITED FORMAT WORD_WRAPPED
SQL> begin
2 if trina_verify_function('TRINA','trina_5555555555','trina') then
3 dbms_output.put_line('True');
4 else
5 dbms_output.put_line('False');
6 end if;
7 end;
8 /
False
PL/SQL procedure successfully completed.
SQL> begin
2 if trina_verify_function('TRINA','trinA_5555555555','trina') then
3 dbms_output.put_line('True');
4 else
5 dbms_output.put_line('False');
6 end if;
7 end;
8 /
False
PL/SQL procedure successfully completed.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|