我正在从 mySql 切换到 PDO,但在创建与数据库的正确连接时遇到问题。用户名和密码在 mySql 中有效,但是当我尝试使用下面显示的代码连接时收到此错误消息:
ERROR: SQLSTATE[28000] [1045] Access denied for user 'sean'@'localhost' (using password: NO)
我不太确定为什么它说密码“不”,因为我肯定使用了正确的密码,而且没有任何名为 Sean 的用户。我用于用户名或密码的语法有问题吗?
这是我正在使用的代码(我将“MyPassword”换成实际密码)
<?php
session_start();
try {
$conn = new PDO('mysql:host=localhost;dbname=MyDatabase', $clickfi4_root, $MyPassword);
$stmt = $conn->prepare('SELECT * FROM customer_info WHERE id = :id');
$stmt->execute(array('id' => $id));
$result = $stmt->fetchAll();
if ( count($result) ) {
foreach($result as $row) {
print_r($row);
}
} else {
echo "No rows returned.";
}
} catch(PDOException $e) {
echo 'ERROR: ' . $e->getMessage();
}
?>