qeephp学习

controller中调用find()操作数据库时报错:

Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in E:\xampp\htdocs\qeemaster_jingly\library\db\adapter\mysql.php on line 68

解决方案:E:\xampp\htdocs\qeemaster_jingly\library\db\adapter\mysql.php 中

$this->_conn =mysql_connect($host, $this->_dsn['login'], $this->_dsn['password'], $force_new);

改为$this->_conn =@mysql_connect($host, $this->_dsn['login'], $this->_dsn['password'], $force_new);

posted on 2014-12-30 12:32  jly553  阅读(174)  评论(0编辑  收藏  举报