Hi gurus,
How to print boolean variable in a pl/sql block?
SQL> ed
Wrote file afiedt.buf
1 DECLARE
2 l_test BOOLEAN:=TRUE;
3 i boolean;
4 BEGIN
5 dbms_output.put_line(l_test);
6* END;
SQL> /
dbms_output.put_line(l_test);
*
ERROR at line 5:
ORA-06550: line 5, column 1:
PLS-00306: wrong number or types of arguments in call to 'PUT_LINE'
ORA-06550: line 5, column 1:
PL/SQL: Statement ignored
Regards,
achyut