Re: [GENERAL] installing DBD::Pg without installing postgres

2001-04-23 Thread Jeff Duffy
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

[GENERAL] Can a PL/PgSQL function return a cursor?

2001-01-13 Thread Jeff Duffy
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;