beta 8, test window does not indicate content in DBMS Output tab for spaces/tabs/non-printables

Claus Pedersen

Member³
In a test window, I have the following code:
SQL:
BEGIN
  dbms_output.put_line(' '||chr(1));
  dbms_output.put_line('  '||chr(3));
  dbms_output.put_line('   '||chr(4));
  dbms_output.put_line('');
  dbms_output.put_line(' '||chr(9));
  dbms_output.put_line(chr(18));
  dbms_output.put_line(chr(23));
  dbms_output.put_line(chr(27));
END;
I run the script and there is no green checkbox on the DMBS Output tab to indicate data, even if there is data in the output tab (also visually).

Please correct this.
 
Back
Top