string(18) "SELECT * F-6ren">
gpt4 book ai didi

php - 尝试检索数据库表时 PDO 错误

转载 作者:行者123 更新时间:2023-11-29 13:01:22 24 4
gpt4 key购买 nike

因此,当我尝试从数据库中获取表时,我不断收到错误,错误如下:

object(PDOStatement)#3 (1) { ["queryString"]=> string(18) "SELECT * FROM cars" }

我正在类中使用一个函数连接到数据库,然后从数据库中进行选择,如下所示:CarsDb.class.php(登录信息来自__construct函数。)

    public function connect($db = "daryl") {
try {
$this->db = new PDO("mysql:host=$this->host;dbname=$db", $this->user, $this->pass);
} catch (PDOException $error) {
echo $error->getMessage();
}
}
public function select($array) {
try {

$result ="SELECT * FROM cars";
$array = $this->db->query($result);

var_dump($array);

} catch (PDOException $e) {
echo $e->getMessage();
}
}

我放置此信息的表格如下所示:

        <?php
include ('CarsDb.class.php');
$db = new CarsDb();
$db->connect();
$db->select($array);
var_dump($array);




?>
<h1 align="center">Database of Cars.</h1>
<form method="POST" >
<table class="sortable">
<thead>
<tr>
<th id="makehead">Make </th>
<th id="modelhead">Model </th>
<th id="idhead">Delete </th>
</tr>
</thead>
<tbody>
<?php
$i = 0;
while ($row = mysql_fetch_array($db->select())) {
$i++;
echo '<tr>';
if ($i % 2) {
echo '<td class="make">' . $row['make'] . '</td>';
echo '<td class="model">' . $row['model'] . '</td>';
echo '<td class="id"><input type="checkbox" name="id" value="' . $row['id'] . '">' . $row['id'] . '</td>';
} else {
echo '<td class="makelight">' . $row['make'] . '</td>';
echo '<td class="modellight">' . $row['model'] . '</td>';
echo '<td class="idlight"><input type="checkbox" name="id" value="' . $row['id'] . '">' . $row['id'] . '</td>';
}
echo '</tr>';
}
?>
</tbody>
<td>
<input Onclick="return ConfirmDelete();" name="delete" type="submit" id="delete" value="Delete"></input>
</td>
</table></form>

<a href= 'CarsWebpage.html'><br>Go back to the beginning.</a>
<?php
mysql_close($con);
?>
</body>
</html>

我只是把相关的代码放在上面来缩短它,你会注意到那里有一些 JavaScript 工作正常,接受由于顶部的错误我无法打印它,对错误的编码表示歉意或不好的做法,因为我只这样做了大约一个月,所以我对此很陌生,感谢任何提供帮助的人。

最佳答案

您没有向数据库请求任何内容,您只是创建一条语句。将其添加到您的 select() 函数中。

$stmt = $this->db->query($result);
$array = $stmt->fetchAll();
var_dump($array);

关于php - 尝试检索数据库表时 PDO 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23294507/

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