You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to firebird...@googlegroups.com
Hello All,
are PSQL cursor and DSQL cursor supposed to cooperate?
I'm trying to perform following block and it fails:
execute block as
declare variable dummy integer;
begin
for select a from x for update into dummy as cursor abc do
begin
execute statement 'update x set b = b + 1 where current of abc';
end
end
Error is:
-Invalid cursor reference
-Cursor ABC is not found in the current context