PHP PDO exception: could not find driver(PHP PDO 异常:找不到驱动程序)
问题描述
MySQL-server 和 PHP5-MySQLi 版本是否必须匹配才能进行连接?我目前收到以下错误:我正在运行 BSD.致命错误:未捕获异常‘PDOException’,消息‘找不到驱动程序’..."
Does the MySQL-server and PHP5-MySQLi version have to match in order for a connection to be possible? I'm currently receiving the error below: I am running BSD. "Fatal error: Uncaught exception 'PDOException' with message 'could not find driver'..."
这是连接信息:
$info = "mysql:dbname=myDB;host=localhost";
$user = "dbUser";
$pw = "somePW";
return(new PDO($info, $user, $pw));
这是我的 MySQL 信息:
Here is my MySQL information:
mysql-server-5.5.24
mysql-server-5.5.24
php5-mysqli-5.4.3
php5-mysqli-5.4.3
推荐答案
PDO 使用特定于数据库的 驱动程序 连接到数据库系统.您似乎缺少连接到 MySQL 数据库所需的 pdo_mysql 驱动程序.pdo_mysql 手册页面上有一些关于安装驱动程序的详细信息,或者可能有一个 BSD 包可以使用(恐怕我对 BSD 不够熟悉,无法提供具体建议).
PDO uses database specific drivers to connect to database systems. It looks like you are missing the pdo_mysql driver that is required to connect to a MySQL database. There is some details on installing the driver on the pdo_mysql manual page, or there may be a BSD package that you can use (I am afraid I'm not familiar enough with BSD to offer specific advice).
这篇关于PHP PDO 异常:找不到驱动程序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:PHP PDO 异常:找不到驱动程序
基础教程推荐
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- HTTP 与 FTP 上传 2021-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- PHP 守护进程/worker 环境 2022-01-01
- 使用 PDO 转义列名 2021-01-01