關於mysql語句的自動補全

史努彪發表於2017-04-15

最近接觸資料庫較多,在使用總經常要重複的輸入命令檢視一些資訊,預設的cli不支援語句自動補全,很是不方便,找了一些更方便的運算元據庫的工具,在此分享

Navicat

對於不需要實際作業系統,比如測試人員,只關心資料庫,現在普遍都使用的是Navicat,提供視覺化的介面,上手即會用。一些特點如下

  • 同時連線多個資料庫
  • 視覺化資料庫/表
  • 直接匯入sql檔案
  • sql語句自動補全
  • 視覺化備份
    以上是個人總結,由於實際工作中很少用此工具連線資料庫,他的優勢應該還有待補充

mycli

mycli是一個支援mysql語句自動補全和語法高亮的MySQL客戶端工具
專案地址:https://github.com/dbcli/mycli
來簡單看下效果:
image

是不是非常cool,以下記錄下自己的安裝過程

根據官方文件,直接使用pip install -U mycli就可以安裝了,但是系統貌似預設沒有pip工具

安裝pip

我使用的是原始碼安裝pip
1.下載原始碼並解壓
2.python setup.py install 安裝pip工具

安裝mycli

需要Python開發環境
執行yum install python-devel,沒有這個環境的話,可能會報編譯錯誤或cannot find -lpython2.6
人後安裝mycli
pip install mycli
如果不可用,可能需要高版本的Python
pip3 install mycli
至此安裝完成
測試下,用法和原生mysql連線方式類似

 mycli -h localhost -u root app_db
$ mycli --help
Usage: mycli [OPTIONS] [DATABASE]

Options:
  -h, --host TEXT               Host address of the database.
  -P, --port INTEGER            Port number to use for connection. Honors
                                $MYSQL_TCP_PORT
  -u, --user TEXT               User name to connect to the database.
  -S, --socket TEXT             The socket file to use for connection.
  -p, --password TEXT           Password to connect to the database
  --pass TEXT                   Password to connect to the database
  --ssl-ca PATH                 CA file in PEM format
  --ssl-capath TEXT             CA directory
  --ssl-cert PATH               X509 cert in PEM format
  --ssl-key PATH                X509 key in PEM format
  --ssl-cipher TEXT             SSL cipher to use
  --ssl-verify-server-cert      Verify server`s "Common Name" in its cert
                                against hostname used when connecting. This
                                option is disabled by default
  -v, --version                 Version of mycli.
  -D, --database TEXT           Database to use.
  -R, --prompt TEXT             Prompt format (Default: "	 u@h:d> ")
  -l, --logfile FILENAME        Log every query and its results to a file.
  --defaults-group-suffix TEXT  Read config group with the specified suffix.
  --defaults-file PATH          Only read default options from the given file
  --myclirc PATH                Location of myclirc file.
  --auto-vertical-output        Automatically switch to vertical output mode
                                if the result is wider than the terminal
                                width.
  -t, --table                   Display batch output in table format.
  --csv                         Display batch output in CSV format.
  --warn / --no-warn            Warn before running a destructive query.
  --local-infile BOOLEAN        Enable/disable LOAD DATA LOCAL INFILE.
  --login-path TEXT             Read this path from the login file.
  -e, --execute TEXT            Execute query to the database.
  --help                        Show this message and exit.

暫且就這兩工具吧~實際專案中可能還會用到PHPadmin和其他一些PHP相關的工具來管理使用資料庫,我接觸較少,還請指教了

文中若有不當和理解錯誤之處,還請斧正~


相關文章