MariaDB [(none)]> use laravel;mysql
Reading table information for completion of table and column nameslaravel
You can turn off this feature to get a quicker startup with -Asql
出現問題的緣由是::數據庫
咱們進入mysql 時,沒有使用-A參數;ide
即咱們使用ui
mysql -uusername -ppassword -hhostname -Pport 的方式進入數據,this
而沒有使用orm
mysql -uusername -ppassword -hhostname -Pport -A的方式進入數據庫。get
當數據庫比較龐大的時候,咱們打開數據庫,即use dbname時,要預讀數據庫信息,這樣系統會出現卡頓問題,當使用-A參數時,就不預讀數據庫信息。it
MariaDB [(none)]> use laravel -A;
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A
Database changed