gpt4 book ai didi

php - 存储过程不适用于 PHP 调用

转载 作者:可可西里 更新时间:2023-11-01 08:52:38 26 4
gpt4 key购买 nike

<分区>

Possible Duplicate:
Can't return a result set in the given context

我正在尝试使用 PHP 调用基本存储过程。但是 mysql 会产生类似“PROCEDURE softland.getAllProducts 无法在给定上下文中返回结果集”的错误。

存储过程

 DELIMITER //
CREATE PROCEDURE GetAllProducts()
BEGIN
SELECT * FROM products;
END //
DELIMITER ;

PHP代码是

<?php
$con=mysql_connect("localhost","root","");
mysql_select_db("softland",$con);
$id = 1;
$result = mysql_query("call getAllProducts()");
echo $result;

if ($result === FALSE) {
die(mysql_error());
}
while($row=mysql_fetch_array($result)){
echo "<br>".$row['name'];
}
echo "Succees";
?>

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com