【发布时间】:2017-09-21 01:21:03
【问题描述】:
我对 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->query('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> |
<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>
-谢谢
【问题讨论】: