我在Linux机器上有一个数据库,我的项目在Windows上
我想连接到本地linux数据库,但我仍然收到此错误Database connection "Mysql" is missing, or could not be created.
我的database.php
public $default = array(
'datasource' => 'Database/Mysql',
'persistent' => false,
'host' => 'xx.xx.xx.xx',
'login' => 'xxxxx',
'password' => 'xxxxx',
'database' => 'xxxxx',
'prefix' => '',
'encoding' => 'utf8',
);
我尝试添加'unix_socket' => '/tmp/mysql.sock'
,同样的错误消息。
如何连接到我的远程数据库?