多个sql查询运行问题

时间:2017-04-24 11:22:30

标签: php mysql pdo

我是PHP新手,我当前的问题是必须在同一页面上运行SQL查询。

我在同一页面上有两个不同的div。一个div显示商店程序中的所有笑话,另一个显示作者的简单选择。

我从此错误消息中得到了什么:

  

致命错误:带有消息的未捕获异常'PDOException'   'SQLSTATE [HY000]:常规错误:2014无法执行查询   其他未缓冲的查询处于活动状态。考虑使用   PDOStatement对象::使用fetchall()。或者,如果您的代码只是永远   要对mysql运行,您可以通过设置启用查询缓冲   PDO :: MYSQL_ATTR_USE_BUFFERED_QUERY属性。'在   /usr/local/pem/vhosts/272348/webspace/httpdocs/icloudis.com/sohail/crud_cssgrids/aeroplane.php:18   堆栈跟踪:#0   /usr/local/pem/vhosts/272348/webspace/httpdocs/icloudis.com/sohail/crud_cssgrids/aeroplane.php(18):   PDO->查询('select * from p ...')#1 {main}抛出   /usr/local/pem/vhosts/272348/webspace/httpdocs/icloudis.com/sohail/crud_cssgrids/aeroplane.php   第18行

据我所知,从这条消息中我不能同时拥有几个无缓冲的查询?所以,我需要使用fetchAll或

setAttribute(PDO::MYSQL_ATTR_USE_BUFFERED_QUERY,true);

并使用closeCursor()。我不理解的是如何使用这一切来使其发挥作用。

这是我的配置文件:

try {


    $pdo = new PDO('mysql:host=xx.xxx.xxx.xx; dbname=xxxxxxx', 'xxxx', 'xxxxxx');
    $pdo->setAttribute(PDO::ATTR_ERRMODE,PDO::ERRMODE_EXCEPTION);
    $pdo->setAttribute(PDO::ATTR_DEFAULT_FETCH_MODE,PDO::FETCH_ASSOC);
    $pdo->setAttribute(PDO::ATTR_EMULATE_PREPARES,false);
    $pdo->setAttribute(PDO::MYSQL_ATTR_USE_BUFFERED_QUERY,true);
} catch (PDOException $e) {

    echo 'Connection failed: ' . $e->getMessage();

    die();

}

我想要查询的页面,我没有尝试在此处输出第二个查询的结果,但当前的代码是:

 <?php
//including the database connection file
//include_once("config_local.php");
include_once("config.php");

session_start();
if(empty($_SESSION['email']))
{
 header("location:index.php");
}

echo "Welcome ".$_SESSION['name']; 



$result = $pdo->query("call aeroplane");
$result->closeCursor();
$result1 = $pdo->query("select * from plane_maker");
$result1->closeCursor();

?>
<!DOCTYPE html>

<html>
    <head>
        <meta charset="UTF-8">
        <title>Aeroplanes</title>
        <link rel="stylesheet" href="css/styles.css">
    </head>
    <body>
<section class="grid-1">
  <div class="item-1">1</div>

  <div class="item-2">
    <div class="item-5">
    <a href="add_form.php">Add New Aeroplane</a> &nbsp; | &nbsp;
        <a href="aeroplane_maker.php">Add New aeroplane maker</a>
        <br/><br/>

    <table width='80%' border=0>

    <tr bgcolor='#CCCCCC'>
        <td>Maker Name</td>
        <td>Aeroplane</td>
        <td>Top speed</td>
        <td>Range</td>
        <td>Update</td>
    </tr>
    <?php

    while($row = $result->fetchAll()) {         
        echo "<tr>";
        echo "<td>".$row['planeMakerName']."</td>";
        echo "<td>".$row['aeroplaneName']."</td>";
        echo "<td>".$row['aeroplaneTopSpeed']."</td>";
        echo "<td>".$row['aeroplaneRange']."</td>";
        echo "<td><a href=\"edit.php?id=$row[aeroplaneID]\">Edit</a> | <a href=\"delete.php?id=$row[aeroplaneID]\" onClick=\"return confirm('Are you sure you want to delete?')\">Delete</a></td>";        
    }

    ?>
    <a href="logout.php">Logout</a>
    </table>
    </div>
    <div class="item-6">6</div>
    <div class="item-7">7</div>
  </div>

  <div class="item-3">3</div>
  <div class="item-4">4</div>
</section>
    </body>
</html>

-Thanks

1 个答案:

答案 0 :(得分:1)

您发布的代码不是真实代码。这使得代码和错误彼此无关,反过来又无法回答。

您应该始终发布导致错误的确切代码。

无论如何,要使代码正常工作,您应该在关闭光标之前获取数据。因为在关闭之后显然将无法获取数据。

$result = $pdo->query("call aeroplane")->fetchAll();
$result->closeCursor();
$result1 = $pdo->query("select * from plane_maker")->fetchAll();

该错误与缓冲查询无关,但与stored procedures' behavior无关。