最大的网站源码资源下载站,
返回单个数据:
1.1:创建mysql存储过程:
delimiter $$
drop procedure if exists `test`.`proc_test` $$
create procedure `test`.`proc_test` (out a int)
begin
select count(*) into a from tblname;
end $$
delimiter ;
1.2:php调用:
$db->query("call test.proc_test(@a)");
$res = $db->query("select @a");
$row = $res->fetch_array();
echo $row['@a'];
返回多个数据:
2.1:创建mysql存储过程:
delimiter $$
drop procedure if exists `test`.`proc_test` $$
create procedure `test`.`proc_test` ()
begin
select * from tbl_name;
end $$
delimiter ;
2.2:php调用:
$res=$db->query("call test.proc_test()");
while ($arr=$res->fetch_array())
{
echo $arr["field"] ."<br/>";
}
p.s.:以上代码执行通过环境 php 5.x.x + mysql 5.x.x
新闻热点
疑难解答