php 中如何调用返回结果集的存储过程?
总提示:Warning:mysql_fetch_array():suppliedargumentisnotavalidMySQLresultresource,但是在数据库...
总提示:Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource,但是在数据库中直接调用可能看到结果的!php调用存储过程有何注意的地方?
<?php
mysql_connect("localhost", "root", "111") or
die("Could not connect: " . mysql_error());
mysql_select_db("world");
$result =mysql_query("call getCityInfo()");
while ($row = mysql_fetch_array($result, MYSQL_NUM)) {
printf("ID: %s Name: %s", $row[0], $row[1]);
printf("<br />");
}
mysql_free_result($result);
?> 展开
<?php
mysql_connect("localhost", "root", "111") or
die("Could not connect: " . mysql_error());
mysql_select_db("world");
$result =mysql_query("call getCityInfo()");
while ($row = mysql_fetch_array($result, MYSQL_NUM)) {
printf("ID: %s Name: %s", $row[0], $row[1]);
printf("<br />");
}
mysql_free_result($result);
?> 展开
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询