PHP PDO异常:找不到驱动程序 [英] PHP PDO exception: could not find driver

查看:225
本文介绍了PHP PDO异常:找不到驱动程序的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

MySQL服务器和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使用特定于数据库的 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异常:找不到驱动程序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆