|
这个问题是俺在更改数据库服务器端口时发现滴,找到 \database\drivers\mysql\mysql_driver.php 将其中的相关函数替换成如下内容即可.(PS:可能其它的数据库驱动也有这个问题,不过俺暂时用不到,也就懒得去看了.)
PHP复制代码
/**
* Non-persistent database connection
*
* @access private called by the base class
* @return resource
*/
function db_connect ()
{
if ($this->port != "")
{
return @mysql_connect($this->hostname.":".$this->port, $this->username, $this->password, TRUE);
}
else
{
return @mysql_connect($this->hostname, $this->username, $this->password, TRUE);
}
}
// --------------------------------------------------------------------
/**
* Persistent database connection
*
* @access private called by the base class
* @return resource
*/
function db_pconnect ()
{
if ($this->port != "")
{
return @mysql_pconnect($this->hostname.":".$this->port, $this->username, $this->password);
}
else
{
return @mysql_pconnect($this->hostname, $this->username, $this->password);
}
}
复制代码 |
评分
-
查看全部评分
|