欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php调用存储过程返回结果集,解决cant return a result set in the given context错误的方法

程序员文章站 2022-04-13 14:28:36
...

需要php调用存储过程,返回一个结果集,发现很困难,找了半天,终于在老外的论坛上找到解决方案,这里本地化一下。

关键就是两点

1)define('CLIENT_MULTI_RESULTS', 131072);

2)$link = MySQL_connect("127.0.0.1", "root", "",1,CLIENT_MULTI_RESULTS) or die("Could not connect: ".mysql_error());


下面就可以正常使用了,以下是例子程序。

  define('CLIENT_MULTI_RESULTS', 131072);

  $link = mysql_connect("127.0.0.1", "root", "",1,CLIENT_MULTI_RESULTS) or die("Could not connect: ".mysql_error());
  mysql_select_db("vs") or die("Could not select database");
?>

      $result = mysql_query("call get_news_from_class_id(2)") or die("Query failed:" .mysql_error());
    while($row = mysql_fetch_array($result, MYSQL_ASSOC))
    {
        $line = '

'.$row["title"].'('.$row["page_time"].')'.'
r>';
        echo $line;
        PRintf("\n");

  }
    mysql_free_result($result);
    ?>

  mysql_close($link);
?>

php调用存储过程返回结果集,解决cant return a result set in the given context错误的方法

声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。

相关文章

相关视频


网友评论

文明上网理性发言,请遵守 新闻评论服务协议

我要评论
  • php调用存储过程返回结果集,解决cant return a result set in the given context错误的方法
  • 专题推荐

    作者信息
    php调用存储过程返回结果集,解决cant return a result set in the given context错误的方法

    认证0级讲师

    推荐视频教程
  • php调用存储过程返回结果集,解决cant return a result set in the given context错误的方法javascript初级视频教程
  • php调用存储过程返回结果集,解决cant return a result set in the given context错误的方法jquery 基础视频教程
  • 视频教程分类