首页 > 数据库 > MySQL > 正文

PHP调用MySQL存储过程

2024-07-24 12:56:35
字体:
来源:转载
供稿:网友

最大的网站源码资源下载站,

返回单个数据:
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 

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表