Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.misc -> Re: PL/SQL HELP NEEDED!!!!

Re: PL/SQL HELP NEEDED!!!!

From: Mark Gumbs <mgumbs_at_nospam.hotmail.com>
Date: Mon, 14 Jun 1999 13:50:23 +0100
Message-ID: <3764f83b.0@145.227.194.253>


Hi Barney Gumble, (Say hi to Betty!)

You don't need the keyword declare when creating procedures/functions. It is only necessary in 'anonymous' blocks.

Mark

Barney Gumble wrote in message <3764F083.60DDC4AE_at_cornerpub.FUDD-SUX>...
>I'm tying to make a stored procedure that will create new user:
>
>CREATE OR REPLACE
>Procedure pMakeCust(fname IN VarChar2, lname IN VarChar2) AS
>
>DECLARE
> -- CustSeq is my sequence for key-generation.
> nCustNO Number := CustSeq.NextVal;
>
>BEGIN
>
> INSERT INTO
> Customers
> (CustNO, Firstname, LastName)
> VALUES
> (nCustNO, fname, lname);
>
>--Here I'll have to have several another INSERT INTO
>-- that will use same nCustNO
>
>END; -- procedure
>
>Why do I get error: "PLS-00103: Encountered the symbol "DECLARE" ?
>What am I doing wrong? Thanx in advance.
>
> BG :o)
>
>--
>"Your infatuation is based on a physical attraction.
>Talk to the woman and you'll realize you have nothing
>in common. >>>BURP!!!<<<"
>-----------------------------------------------------
>Replace ".FUDD-SUX" with ".com" to reply.
>
>
Received on Mon Jun 14 1999 - 07:50:23 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US