PHP错误Warning:mysql_query()解决方法_php技巧
程序员文章站
2022-04-23 15:57:46
...
php提示错误:Warning: mysql_query() [function.mysql-query]: Access denied for user 'ODBC'@'localhost' (using password: NO)
代码:
代码:
link=mysql_connect($host,$user,$pw); mysql_select_db($db); } function query($sql){ mysql_query($sql); } function __destruct(){ mysql_close($this->link); //multi construct will cause error } // liehuo,net } $db=new mysqlClass(); $db=new mysqlClass(); $db->query("select * from user");
原因:
mysqlClass第二次初使化时,先初使化mysqlClass,得到跟第一个$db相同的$this->link,然后调用__construct函数会把this->link关闭。
最后导致$db中mysql资源为空,弹出错误。
解决办法:
$db=$db?$db:new mysqlClass();
或者
$this->link=mysql_connect($host,$user,$pw,true);
希望提供的解决方法可以真正的帮助到大家。
下一篇: 使用node+swig渲染
推荐阅读
-
为PHP安装imagick时出现Cannot locate header file MagickWand.h错误的解决方法,imagick_PHP教程
-
phpExcel导出大量数据出现内存溢出错误的解决方法_PHP教程
-
php mssql扩展SQL查询中文字段名解决方法_php技巧
-
Mysql和网页显示乱码解决方法集锦_php技巧
-
PHP新手NOTICE错误常见解决方法_PHP教程
-
Function eregi is deprecated (解决方法)_php技巧
-
PHP has encountered an Access Violation 错误的解决方法_PHP教程
-
php启动时候提示PHP startup的解决方法_php技巧
-
php Notice: Undefined index 错误提示解决方法
-
Cannot modify header information错误解决方法_PHP教程