Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: Trouble coverting a Procedure into a "STORED" procedure
Andy Hassall wrote:
> On Fri, 06 Feb 2004 17:44:22 -0800, Daniel Morgan <damorgan_at_x.washington.edu> > wrote: > >
> > > So that would be 'yes', then? > > I'm saying that DECLARE can be present in a procedure, e.g. extending the > example above with a ridiculously trivial nested block: > > CREATE OR REPLACE PROCEDURE x IS > i VARCHAR2(10); > BEGIN > DECLARE > e exception; > BEGIN > raise e; > EXCEPTION > WHEN e THEN > NULL; > END; > NULL; > END x; > / > > Just trying to clarify your statement 'remove DECLARE it does not belong in > any proc or function' as that's pretty absolute.
The comment 'remove DECLARE' was specific to the OP's example. Not to every possible usage.
-- Daniel Morgan http://www.outreach.washington.edu/ext/certificates/oad/oad_crs.asp http://www.outreach.washington.edu/ext/certificates/aoa/aoa_crs.asp damorgan_at_x.washington.edu (replace 'x' with a 'u' to reply)Received on Fri Feb 06 2004 - 20:37:33 CST
![]() |
![]() |