On Mon, 23 Apr 2001 16:30:43 -0400, Fran Fabrizio alluded:
>
> Hello,
>
> It seems that there should be a way to install the DBD Pg module without
> having to install postgres on the local machine. I tried installing
> just the libs rpm, but that didn't seem to do the trick. I've done s
I have not had any luck getting a PL/PgSQL function that returns a
cursor to compile. I've tried writing this in several forms, for
instance;
CREATE FUNCTION getcursor()
RETURNS cursor
AS
'BEGIN
DECLARE testcursor CURSOR FOR
SELECT * FROM test_table;
RETURN testcursor;
END;