Rumah  >  Artikel  >  pangkalan data  >  mysql游标不到数据问题以及解决方案

mysql游标不到数据问题以及解决方案

零下一度
零下一度asal
2017-05-12 11:04:412849semak imbas

前几天遇到一个mysql游标不到数据问题,这个问题困扰了我两天,现在终于解决了,下面小编就来为大家分享一下。

这是建表语句,插入两行数据 

drop table如果存在testinfo;
创建表testinfo
(
name varchar(10)not null,
年龄int
);
truncate table testinfo;
插入testinfo()值('你',15);
插入testinfo()值('me',20);

查询的表数据 

mysql> select name,age from testinfo; 
+ ------ + ------ + 
| 名称| 年龄| 
+ ------ + ------ + 
| 你| 15 | 
| 我| 20 | 
+ ------ + ------ + 
这是使用游标的存储过程 
drop procedure if exists test_proc;
分隔符//
创建过程test_proc()
开始
DECLARE done int default false;
DECLARE一个char(10);
DECLARE b int;
DECLARE cur1游标用于选择名称,age from testinfo;
DECLARE继续处理SQLSTATE'02000'set done = true;
打开cur1;
read_loop:loop
        FETCh cur1进入a,b;
        如果这样做了
                离开read_loop
        万一;
        选择@ a,@ b;
        插入testinfo值(@ a,@ b);
端环;
关闭cur1;
结束
//
分隔符
调用test_proc();

执行结果如下 

mysql> \。/opt/mysql/test_proc.sql 
查询行,受影响的0行,1个警告(0.00秒) 
查询行,受影响(0.02秒)0行 
+ ------ + ------ + 
| @a | @b | 
+ ------ + ------ + 
| NULL | NULL | 
+ ------ + ------ + 
1行集(0.00秒)

上面是有错误的:1048(23000):列'名称'不能为空 

不知道错在哪里,为什么取
不到数据? 两天了,现在终于知道了。应该这么改,l如下:

插入testinfo值(@ a,@ b);改成插入testinfo值(a,b);就好了 
声明了变量a,b,然后通过游标给他赋值,但是并没有给@ a,@ b赋值..

所以遇到问题要仔细看看就容易解决的。

【相关推荐】

1. 免费mysql在线视频教程

2. MySQL最新手册教程

3. 数据库设计那些事

Atas ialah kandungan terperinci mysql游标不到数据问题以及解决方案. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!

Kenyataan:
Kandungan artikel ini disumbangkan secara sukarela oleh netizen, dan hak cipta adalah milik pengarang asal. Laman web ini tidak memikul tanggungjawab undang-undang yang sepadan. Jika anda menemui sebarang kandungan yang disyaki plagiarisme atau pelanggaran, sila hubungi admin@php.cn