TEXT_IO.PUT_LINE
built-in procedureThis procedure concatenates the character data supplied by item to the current line of an open file, or outputs it to the Interpreter. A newline character (that is, carriage return) is automatically added to the end of the string.
PROCEDURE TEXT_IO.PUT_LINE
(file file_type,
item VARCHAR2);
Parameter |
Description |
|
A variable that specifies an open file. |
|
A variable that specifies the character data to be displayed. |
/*
** Print two complete lines to the output file.
*/
TEXT_IO.PUT_LINE(out_file, TO_CHAR(SYSDATE));
TEXT_IO.PUT_LINE('Starting test procedures...');
About the TEXT_IO
built-in package
Copyright © 1984, 2005, Oracle. All rights reserved.