只有少数页面显示错误致命错误:mysql_real_escape_string()

时间:2013-04-25 09:49:04

标签: php mysql

我在某些页面中遇到此错误,无法确定原因,!请帮忙。 日Thnx。,

  

致命错误:mysql_real_escape_string():拒绝用户访问   'flatsloo'@'localhost'(使用密码:否)致命错误:   mysql_real_escape_string():无法链接到服务器   建立

我的连接代码

public function openConnection()
    {
        try
        {
            $this->_objMySql = mysql_connect($this->getDbConfig()->getHostName(), $this->getDbConfig()->getUsername(), $this->getDbConfig()->getPassword());

            if (mysql_errno())   // check if error occurred
            {
                return mysql_error();
            }

            mysql_select_db($this->getDbConfig()->getDatabase());

            if (mysql_errno())   // check if error occurred
            {
                return mysql_error();
            }

            return true;
        }
        catch (Exception $e)
        {
            return $e->getMessage();
        }
    }

1 个答案:

答案 0 :(得分:1)

您的数据库连接出现了一些错误。它无法连接到您的数据库。检查连接语句mysql_connect及其参数。