MySQL出現Ignoring query to other database的問題,ignoringdatabase

來源:互聯網
上載者:User

MySQL出現Ignoring query to other database的問題,ignoringdatabase

今天使用mysql的時候,輸入任意一條命令都會出:

Ignoring query to other database

這條錯誤資訊,很是奇怪。後來才發現是登入資料庫時,少了個-u的參數。。

正確的命令是:

mysql -uroot -p
我輸入的是:

mysql -root -p

加上-u就可以了

ubuntu下mysql配置問題,不可以使用資料庫

在串連mysql時沒有"-u"參數導致的
[root@vps ~]# mysql -hlocalhost -root -p
重新串連mysql 加上-u參數 一切正常
[root@vps ~]# mysql -hlocalhost -uroot -p
 
php mysql的no database selected問題

把mysql_select_db($database_conn, $conn);放到mysql_pconnect後面應該就沒問題了

多重新整理幾下就會變成正常我推測是進行了POST操作後,執行到了mysql_select_db($database_conn, $conn);
而由於使用的是持久串連,程式會自動尋找上一次的可用串連,所以就正常了
 

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.