mysql命令行爱好者必备工具mycli

 更新时间:2019年05月08日 10:05:49   投稿:mrr  
这篇文章主要介绍了mysql命令行爱好者必备工具mycli的相关知识,非常不错,具有一定的参考借鉴价值 ,需要的朋友可以参考下

mycli

MyCLI is a command line interface for MySQL, MariaDB, and Percona with auto-completion and syntax highlighting.

•Source: https://github.com/dbcli/mycli
•Chat: Gitter
•Mailing List: https://groups.google.com/forum/#!forum/mycli-users

Quick Start

If you already know how to install python packages, then you can simply do:
$ pip install mycli
If you're on macOS you can install it via homebrew.
$ brew update && brew install mycli
If you're having trouble with the quick start, check the install page for detailed instructions

Usage

$ 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.
 --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     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.
 -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.
 --login-path TEXT    Read this path from the login file.
 -e, --execute TEXT   Execute command and quit.
 --help      Show this message and exit.

blogroll

总结

以上所述是小编给大家介绍的mysql命令行爱好者必备工具mycli,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对脚本之家网站的支持!
如果你觉得本文对你有帮助,欢迎转载,烦请注明出处,谢谢!

相关文章

  • Windows下Mysql启动报1067的解决方法

    Windows下Mysql启动报1067的解决方法

    这篇文章主要为大家详细介绍了Windows下Mysql启动报1067的解决方法,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2017-10-10
  • lnmp关闭mysql日志保护硬盘空间的方法

    lnmp关闭mysql日志保护硬盘空间的方法

    这篇文章主要介绍了lnmp关闭mysql日志保护硬盘空间的方法,需要的朋友可以参考下
    2014-02-02
  • Windows下通过cmd进入DOS窗口访问MySQL数据库

    Windows下通过cmd进入DOS窗口访问MySQL数据库

    这篇文章主要介绍了Windows下通过cmd进入DOS窗口访问MySQL数据库的实现方法,本文给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下
    2021-03-03
  • MySQL中的数据备份与SQL语句

    MySQL中的数据备份与SQL语句

    这篇文章主要介绍了MySQL中的数据备份与SQL语句,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教
    2023-05-05
  • mysql分组排序如何取第一条数据

    mysql分组排序如何取第一条数据

    这篇文章主要介绍了mysql分组排序如何取第一条数据问题,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教
    2023-07-07
  • 利用mycat实现mysql数据库读写分离的示例

    利用mycat实现mysql数据库读写分离的示例

    本篇文章主要介绍了利用mycat实现mysql数据库读写分离的示例,mycat是最近很火的一款国人发明的分布式数据库中间件,它是基于阿里的cobar的基础上进行开发的,有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2018-03-03
  • pt-kill 常用杀进程参数介绍

    pt-kill 常用杀进程参数介绍

    这篇文章主要介绍了pt-kill 常用杀进程参数介绍,需要的朋友可以参考下
    2016-04-04
  • mysql 按中文字段排序

    mysql 按中文字段排序

    在MySQL中,进行中文排序和查找的时候,对汉字的排序和查找结果是错误的。 这种情况在MySQL的很多版本中都存在。
    2009-01-01
  • MySQL timestamp的类型与时区实例详解

    MySQL timestamp的类型与时区实例详解

    这篇文章主要介绍了 MySQL timestamp的类型与时区实例详解的相关资料,需要的朋友可以参考下
    2016-11-11
  • MySQL 迁移OB Oracle场景中自增主键实践操作

    MySQL 迁移OB Oracle场景中自增主键实践操作

    这篇文章主要介绍了MySQL 迁移OB Oracle场景中自增主键实践操作详解,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪
    2023-10-10

最新评论