Home >Database >Mysql Tutorial >How to Fix the 'Could Not Find Driver' PDO Error in PHP?
PDO Error: "Could Not Find Driver" Solved with pdo_mysql Module
Issue:
Upon attempting to connect to a MySQL database using PHP's PDO extension on a Debian Lenny server, developers may encounter a PDOException with the message "could not find driver." This error occurs at the line:
$dbh = new PDO('mysql:host=' . DB_HOST . ';dbname=' . DB_NAME, DB_USER, DB_PASS)
Solution:
The issue arises from the absence of the pdo_mysql module in PHP. To resolve it, check phpinfo() for the following:
pdo_mysql PDO Driver for MySQL, client library version => 5.1.44
If the pdo_mysql module is missing, proceed with the following steps:
Install the PHP MySQL extension using the appropriate command for your operating system:
Restart Apache:
After completing these steps, the pdo_mysql module should be available, and the PDO connection should establish without encountering the "could not find driver" error.
The above is the detailed content of How to Fix the 'Could Not Find Driver' PDO Error in PHP?. For more information, please follow other related articles on the PHP Chinese website!