I had tried several variations of MOVE Backward inside an Execute
statement earlier. And now, I'm seeing this error appear again:
ERROR: 0A000: cannot manipulate cursors directly in PL/pgSQL
I updated the Postgres function below with this replacement line:
Execute 'MOVE Backward All In c_entry';
Any other thoughts?
On 3/1/07, Tom Lane wrote:
> "Postgres User" writes:
> > So I added the following code:
>
> > ref_entry = 'c_entry';
> > MOVE Backward All In c_entry;
>
> You have to use EXECUTE for the latter.
>
> regards, tom lane
>