Ah, sorry, right. I did that. Real code was correct, pseudo code was
bad. :)
-----Original Message-----
From: Tom Lane [mailto:tgl@sss.pgh.pa.us]
Sent: Friday, April 06, 2007 1:27 PM
To: Doug Thom
Cc: pgsql-odbc@postgresql.org
Subject: Re: [ODBC] Brio returning data through stored procedures.
"Doug Thom" <dthom@iagr.net> writes:
> So I would be doing something like:
> --Do the thing that builds the query.
> Select query
> Into query-string
> From table-that-has-query;
> Open cursor for query-string;
> Return cursor;
> --End pseudo code
I think you're looking for OPEN cursor FOR EXECUTE in plpgsql.
See the "cursor operations" part of the plpgsql manual.
regards, tom lane