Re: What an error message...
- From: "myfriendhenry@xxxxxxxxx" <myfriendhenry@xxxxxxxxx>
- Date: 31 Dec 2005 07:19:28 -0800
Just a guess.
The Parameter-Type-Name (in your case IN) is only written once at the
beginning of your vars. The doc seems to hint that you need to state
IN or OUT for each variable.
CREATE PROCEDURE Enrollstudent(in :Stud_id integer, in :Class_Id
integer, IN :GPA REAL);
BEGIN
INSERT INTO Enrolls VALUES(:Stud_id, :Class_id, :GPA);
END;
.
- References:
- What an error message...
- From: Cyphos
- Re: What an error message...
- From: Cyphos
- What an error message...
- Prev by Date: Pervasive.SQL 8 Problem
- Previous by thread: Re: What an error message...
- Next by thread: Pervasive.SQL 8 Problem
- Index(es):