derfie
Programmer
- Apr 15, 2008
- 2
I'm not a database person but, I have the following written in pervasive
and I wanted to see what it does so, I did this
problem is the progress bar comes up and it never ends! Any idea why this might be?
Thanks,
Fred
Code:
CREATE PROCEDURE PROCOUT (OUT :outval INTEGER)
AS BEGIN
SELECT Student_ID INTO :outval FROM Enrolls WHERE Grade=1.0;
END
and I wanted to see what it does so, I did this
Code:
CREATE PROCEDURE pdate();
BEGIN
DECLARE :a integer;
CALL PROCOUT(:a);
PRINT :a;
END
problem is the progress bar comes up and it never ends! Any idea why this might be?
Thanks,
Fred