Print command

SQL*XL
home

Syntax:
Version 1: PRINT variable;
Version 2: PRINT

Description:
Displays the value of a bind variable in a message box (version 1) or displays the parameters dialog (version 2)

Example:
var a = 123;
print a;

begin
  :b := 'hello world';
end;
print b;

print;

See also: