MySQL數(shù)據(jù)庫(kù)自動(dòng)補(bǔ)全命令的三種方法
注意:第三種方法要在 XSell 中使用,在 finalsell 中使用不了
方式一:臨時(shí)使用自動(dòng)補(bǔ)全功能方式二:永久使用自動(dòng)補(bǔ)全功能
vim /etc/my.cnf[mysql]auto-rehash方式三:使用軟件mycli實(shí)現(xiàn)自動(dòng)補(bǔ)全功能
此方法需要使用在線源進(jìn)行軟件包的安裝
yum -y install epel-releaseyum -y install python-pipyum -y install python-develyum clean allyum -y install gcc libffi-devel openssl-devel && pip install --ignore-installed mycli==1.8.0yum -y install zlib-devel bzip2-devel openssl-devel ncurses-devel sqlite-devel readline-devel tk-devel gdbm-devel db4-devel libpcap-devel xz-devel gccwget https://www.python.org/ftp/python/3.9.0/Python-3.9.0.tgzmkdir ~/.pip/cat > ~/.pip/pip.conf <<EOF[global]index-url = https://mirrors.aliyun.com/pypi/simple/[install]trusted-host=mirrors.aliyun.comEOFyum -y install libffi-devel zlib* python-devel openssl-develtar -zxf Python-3.9.0.tgzcd Python-3.9.0/./configure --prefix=/usr/local/python --with-sslmake && make install ln -s /usr/local/python/bin/python3 /usr/bin/echo ’export PATH=/usr/local/python/bin:$PATH’ >> /etc/profile source /etc/profilepip3 install myclimycli
到此這篇關(guān)于MySQL數(shù)據(jù)庫(kù)自動(dòng)補(bǔ)全命令的三種方法的文章就介紹到這了,更多相關(guān)MySQL 自動(dòng)補(bǔ)全命令內(nèi)容請(qǐng)搜索好吧啦網(wǎng)以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持好吧啦網(wǎng)!
相關(guān)文章:
1. 50種方法巧妙優(yōu)化你的SQL Server數(shù)據(jù)庫(kù)2. oracle觸發(fā)器介紹3. 快速刪除ORACLE重復(fù)記錄4. 導(dǎo)出錯(cuò)誤編碼的mysql數(shù)據(jù)庫(kù)5. mysql數(shù)據(jù)庫(kù)中最常用的時(shí)間轉(zhuǎn)換函數(shù)的用法7. 在redhat 9 上安裝oracle 9.2.0.4 時(shí),DBCA 出錯(cuò)的解決辦法8. 數(shù)據(jù)庫(kù)Oracle9i的企業(yè)管理器簡(jiǎn)介9. MySQL基本調(diào)度策略淺析10. Access數(shù)據(jù)庫(kù)安全的幾個(gè)問(wèn)題
