尝试使用PDO连接数据库,我一直得到错误可能“找不到驱动程序”。在线查看,我猜这是一个配置错误,但我不知道如何解决它。代码:
try
{
$conn = new PDO("mysql:host=localhost;dbname=dubook", "root", "password");
// set the PDO error mode to exception
$conn->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
// more code here
}
catch(PDOException $e)
{
echo "Connection to DB failed: " . $e->getMessage();
}