scroll游标是只读的吗?
hljhl 2003-12-16 10:51:59 我定义了如下游标
declare scroll cur_tjb cursor for select bh,tj,ws from b_glryyb1 where bh is not null for update
当运行时提示“是read only 游标不能for update”
如果去掉"scroll"就可修改。因为我要倒着走指针,所以要"cursor",而且,如果不要"scroll",加上"order by bh"也有如上提示。请教为什么?