Oracle PL/SQL/PL SQL/Server Output — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
(нет различий)
|
Текущая версия на 09:59, 26 мая 2010
Ser server output off
-- Example of a WHILE loop that never executes.
set serveroutput off;
DECLARE
c NUMBER := 0;
BEGIN
DBMS_OUTPUT.PUT_LINE("The value of variable_Calc is " || c);
END;
/