Concatenates the character data supplied by item to the current line of an open file, or outputs it to the Interpreter. A newline character (i.e., carriage return) is automatically Added To the end of the string.
PROCEDURE Text_IO.Put_Line
(file file_type,
item VARCHAR2);
Parameter | Description |
---|---|
file | A variable that specifies an open file. |
item | 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...');