| Oracle FAQ | Your Portal to the Oracle Knowledge Grid | |
|  |  | |||
Home -> Community -> Usenet -> c.d.o.server -> Text_IO error - using Oracle Procedure Builder!
Using Oracle 7.3.4, Oracle Procedure Builder  V1.5.6.15.3
Experimenting with the procedure builder & copying a very simple example out of the manual -
PROCEDURE hello_world IS
        my_local_var VARCHAR2(25);
BEGIN
	my_local_var := 'This is a test.';
	Text_IO.Put_Line ('Hello World!');  
	Text_IO.Put_Line (my_local_var);  
error at line 5, col 2
PLS-00201:identifier 'TEXT_IO.PUT_LINE' must be declared
I know its probably something very simple but as this is my first attempt it's not very obvious to me!
Any Ideas
Thanks
Adrian Harrison Received on Fri Jul 09 1999 - 11:19:55 CDT
|  |  |