mycli--让你惊艳的mysql客户端

mysql的图形化客户端有很多种,web形式的有phpmyadmin,cs形式的有navicat等。而在命令行下要操作sql,如果只用其自带的mysql client,体验是比较差的。有没有一种命令行下的客户端,能便捷地操作sql语句,且有友好的界面?

如果你也有这样的需求,那么mycli应该就是你的菜了...

一言胜千言:

mycli--让你惊艳的mysql客户端_第1张图片
mycli.gif

具体的用法,参照官方文档:

文档

github仓库

以下说明操作多个数据库的方式:

使用mysql自带的mysql_config_editor储存连接信息:

mysql_config_editor set --login-path=localhost --user=senlong --password --host=localhost --port=3306
Enter password:
mysql_config_editor set --login-path=test2 --user=test2 --password --host=localhost --port=3306
Enter password:

调用mycli进入数据库:

$ mycli --login-path=localhost
Version: 1.5.2
Chat: https://gitter.im/dbcli/mycli
Mail: https://groups.google.com/forum/#!forum/mycli-users
Home: http://mycli.net
Thanks to the contributor - Daniel Black
mysql root@localhost:(none)> 
mycli--让你惊艳的mysql客户端_第2张图片
mycli操作数据表.png

显示所有的连接信息:

$ mysql_config_editor print --all
[localhost]
user = senlong
password = *****
host = localhost
port = 3306
[test2]
user = test2
password = *****
host = localhost
port = 3306

删除某个连接:

mysql_config_editor remove --login-path=test2

你可能感兴趣的:(mycli--让你惊艳的mysql客户端)