定义游标 declare fetchSeqCursor cursor for select seqname, value from sys_sequence;
使用游标 open fetchSeqCursor; fetch数据 fetch cursor into _seqname, _value;
关闭游标 close fetchSeqCursor; 不过这都是针对cursor的操作而已,和PL/SQL没有什么区别吧,不过光是了解到这个是根本不足以写出Mysql的fetch过程的,还要了解其他的更深入的知识,我们才能真正的写出好的游标使用的procedure 首先fetch离不开循环语句,那么先了解一下循环吧。 我一般使用Loop和while觉得比较清楚,而且代码简单。
这里使用Loop为例
复制代码 代码如下:
fetchSeqLoop:Loop fetch cursor into _seqname, _value; end Loop;
现在是死循环,还没有退出的条件,那么在这里和oracle有区别,Oracle的PL/SQL的指针有个隐性变量%notfound,Mysql是通过一个Error handler的声明来进行判断的, declare continue handler for Not found (do some action); 在Mysql里当游标遍历溢出时,会出现一个预定义的NOT FOUND的Error,我们处理这个Error并定义一个continue的handler就可以叻,关于Mysql Error handler可以查询Mysql手册定义一个flag,在NOT FOUND,标示Flag,在Loop里以这个flag为结束循环的判断就可以叻。
复制代码 代码如下:
declare fetchSeqOk boolean; ## define the flag for loop judgement declare _seqname varchar(50); ## define the varient for store the data declare _value bigint(20); declare fetchSeqCursor cursor for select seqname, value from sys_sequence;## define the cursor declare continue handler for NOT FOUND set fetchSeqOk = true; ## define the continue handler for not found flag set fetchSeqOk = false; open fetchSeqCursor; fetchSeqLoop:Loop if fetchSeqOk then leave fetchSeqLoop; else fetch cursor into _seqname, _value; select _seqname, _value; end if; end Loop; close fetchSeqCursor;