MySQL 的命令列客戶端,可以自動完成和語法突出顯示。
首頁:http://mycli.net 文件:http://mycli.net/docs
Postgres 等效項:http://pgcli.com
如果你已經知道如何安裝 python 套件,那麼你可以透過 pip 安裝它:
您可能需要在 Linux 上使用 sudo。
$ pip install -U mycli
或者
$ brew update && brew install mycli # Only on macOS
或者
$ sudo apt-get install mycli # Only on debian or ubuntu
$ mycli --help
Usage: mycli [OPTIONS] [DATABASE]
A MySQL terminal client with auto-completion and syntax highlighting.
Examples:
- mycli my_database
- mycli -u my_user -h my_host.com my_database
- mycli mysql://my_user@my_host.com:3306/my_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.
--ssh-user TEXT User name to connect to ssh server.
--ssh-host TEXT Host name to connect to ssh server.
--ssh-port INTEGER Port to connect to ssh server.
--ssh-password TEXT Password to connect to ssh server.
--ssh-key-filename TEXT Private key filename (identify file) for the
ssh connection.
--ssh-config-path TEXT Path to ssh configuration.
--ssh-config-host TEXT Host to connect to ssh server reading from ssh
configuration.
--ssl Enable SSL for connection (automatically
enabled with other flags).
--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.
--tls-version [TLSv1|TLSv1.1|TLSv1.2|TLSv1.3]
TLS protocol version for secure connection.
--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 Output mycli's version.
-v, --verbose Verbose output.
-D, --database TEXT Database to use.
-d, --dsn TEXT Use DSN configured into the [alias_dsn]
section of myclirc file.
--list-dsn list of DSN configured into the [alias_dsn]
section of myclirc file.
--list-ssh-config list ssh configurations in the ssh config
(requires paramiko).
-R, --prompt TEXT Prompt format (Default: "t u@h:d> ").
-l, --logfile FILENAME Log every query and its results to a file.
--defaults-group-suffix TEXT Read MySQL config groups with the specified
suffix.
--defaults-file PATH Only read MySQL 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.
-g, --login-path TEXT Read this path from the login file.
-e, --execute TEXT Execute command and quit.
--init-command TEXT SQL statement to execute after connecting.
--charset TEXT Character set for MySQL session.
--password-file PATH File or FIFO path containing the password
to connect to the db if not specified otherwise
--help Show this message and exit.
mycli
是使用prompt_toolkit 寫的。
SELECT * FROM <tab>
將僅顯示表名稱。SELECT * FROM users WHERE <tab>
將僅顯示列名稱。fs alias query
儲存查詢,並在需要時使用f alias
執行它。~/.myclirc
中自動建立。如果您有興趣為這個專案做出貢獻,首先我謹表示衷心的感謝。我寫了一個小文件來描述如何在開發設定中運行它。
https://github.com/dbcli/mycli/blob/main/CONTRIBUTING.md
如果您需要協助,請隨時與我聯繫。
我的電子郵件:[email protected]
推特:@amjithr
您可以安裝 AUR 中提供的 mycli 軟體包:
$ yay -S mycli
在 Debian、Ubuntu 發行版上,您可以使用 apt 輕鬆安裝 mycli 軟體包:
$ sudo apt-get install mycli
Fedora 有一個可用於 mycli 的軟體包,使用 dnf 安裝它:
$ sudo dnf install mycli
請按照此部落格文章中的說明:http://web.archive.org/web/20221006045208/https://www.codewall.co.uk/installing-using-mycli-on-windows/
該項目是透過 kickstarter 資助的。我感謝支持該計畫的支持者。
特別感謝 Jonathan Slenders 創建了 Python Prompt Toolkit,它實際上是骨幹庫,使這個應用程式成為可能。喬納森還在該應用程式的開發過程中提供了寶貴的回饋和支援。
Click 用於命令列選項解析和列印錯誤訊息。
感謝 PyMysql 為 MySQL 資料庫提供了純 Python 適配器。
Mycli 在 macOS 和 Linux 上進行了測試,需要 Python 3.7 或更高版本。
Mycli 未在 Windows 上進行測試,但此應用程式中使用的程式庫與 Windows 相容。這意味著它應該無需任何修改即可工作。如果您無法在 Windows 上運行它,請提交錯誤。
有關使用和配置 mycli 的更多信息,請查看我們的文件。
常見主題包括: