Warnings of using uninitialized variables in PL/SQL

From: Valentin <vallka_at_hotmail.com>
Date: 20 Nov 2001 06:51:38 -0800
Message-ID: <888c8e58.0111200651.35c870_at_posting.google.com>



[Quoted] Every modern compiler has such a feature. If there any possibility to track this in PL/SQL? E.g.

create procedure Foo
is

   n number;
begin

   insert into bar i values (n);
   commit;
   n := 8;
end;

Using a code like this will produce a warning in about any compiler for any language (C++, Java, Perl...), providing warnings are turned on. But what about PL/SQL? How to turn on warnings for Pl/SQL? Received on Tue Nov 20 2001 - 15:51:38 CET

Original text of this message