无法使用 CodeIgniter 连接到 MySQL 数据库
错误消息:
A Database Error Occurred Unable to connect to your database server using the provided settings.
用户在 CodeIgniter 中从 MySQL 驱动程序切换到 MySQLi 驱动程序时遇到此错误。使用以下配置:
$db['default']['hostname'] = $hostname; $db['default']['username'] = $username; $db['default']['password'] = $password; $db['default']['database'] = $database; $db['default']['dbdriver'] = 'mysqli'; $db['default']['port'] = "3306"; $db['default']['dbprefix'] = ''; $db['default']['pconnect'] = TRUE; $db['default']['db_debug'] = TRUE; $db['default']['cache_on'] = FALSE; $db['default']['cachedir'] = ''; $db['default']['char_set'] = 'utf8'; $db['default']['dbcollat'] = 'utf8_general_ci'; $db['default']['swap_pre'] = ''; $db['default']['autoinit'] = TRUE; $db['default']['stricton'] = FALSE;
解决方案:
问题可能出在 PHP 配置上。要调试连接,可以在 ./config/database.php 末尾添加一个测试脚本:
... ... ... echo '<pre class="brush:php;toolbar:false">'; print_r($db['default']); echo ''; echo 'Connecting to database: ' .$db['default']['database']; $dbh=mysql_connect ( $db['default']['hostname'], $db['default']['username'], $db['default']['password']) or die('Cannot connect to the database because: ' . mysql_error()); mysql_select_db ($db['default']['database']); echo '
此脚本将打印出数据库配置并尝试连接到数据库。如果连接失败,将显示错误消息。这应该有助于确定问题的根源并允许成功建立连接。
以上是为什么我的 CodeIgniter 应用程序无法使用 MySQLi 驱动程序连接到我的 MySQL 数据库?的详细内容。更多信息请关注PHP中文网其他相关文章!