A script-enabled browser is required for this page to function properly.

TEXT_IO.Put_Line

Description

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.

Syntax


PROCEDURE Text_IO.Put_Line
   (file file_type,
    item VARCHAR2);

Parameters

Parameter Description
file A variable that specifies an open file.
item A variable that specifies the character data to be displayed.

Example


 /*
** Print two complete lines to the output file.
*/
Text_IO.Put_Line(out_file, TO_CHAR(SYSDATE));
Text_IO.Put_Line('Starting test procedures...');