DBMS_OUTPUT.NEW_LINE and DBMS_OUTPUT.NEW_LINE() difference?
Posted
by Vineet
on Stack Overflow
See other posts from Stack Overflow
or by Vineet
Published on 2010-04-07T16:12:13Z
Indexed on
2010/04/07
16:33 UTC
Read the original article
Hit count: 205
What is the difference between these two statements?
dbms_output.new_line('') // this is with arguments
dbms_output.new_line; // with no parameters,no round brackets
If there is function overloading,even for that close and open brackets are required after function name.
© Stack Overflow or respective owner