1. 程式人生 > >mysql實用工具

mysql實用工具

comm 由於 serve login config x509 因此 windows def

mysql 命令行補全工具 mycli

前言

我們在連接mysql數據庫的時候,大多數情況下是使用gui圖形界面的工具的。但是,有時候連接數據庫還是命令行方便,所以,我們通常都需要掌握一點命令行操作數據庫的基礎。

這裏推薦一篇文章給大家看Mysql命令大全,這裏包含了絕大多數我們需要用到的mysql命令。

但是,默認的mysql命令行是不支持補全的,並且很討厭的是,我們輸入了錯誤的命令之後,由於命令行操作習慣,按ctrl+c想要取消的時候,tmd已經退出了mysql命令行工具。只能再次連接。想要刪除錯誤的命令只能 ctrl+a ctrl+u進行刪除。或者一直按ctrl+w進行刪除。

還有,每個命令必須以;分號結尾,而我這樣的馬大哈老是忘記。

最重要的是,這玩意兒不支持補全!我這樣的人,沒有補全怎麽操作命令行哦!

今天看到github上有一個開源項目叫mycli,感覺非常好,安裝使用了一下,果然牛逼,已經克服了我的Mysql命令行操作恐懼了!因此,推薦給大家!

安裝

官方網站:http://mycli.net
github地址:https://github.com/dbcli/mycli

操作演示

mac安裝方法

$ brew update && brew install mycli
ubuntu安裝命令
sudo apt-get install mycli
arch安裝命令
sudo pacman -S mycli
windows未測試,手頭上沒有windows系統。

使用方法

$ 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: "\t \[email protected]\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.
連接數據庫

$ mycli local_database

$ mycli -h localhost -u root app_db

$ mycli mysql://[email protected]:3306/django_poll

如果你熟練使用Mysql命令行,那麽使用這個工具沒有任何問題。如果你不熟練,使用這個工具可以跟快的使你熟練!

mysql實用工具