mysql的图形化客户端有很多种,web形式的有phpmyadmin,cs形式的有navicat等。而在命令行下要操作sql,如果只用其自带的mysql client,体验是比较差的。有没有一种命令行下的客户端,能便捷地操作sql语句,且有友好的界面?
如果你也有这样的需求,那么mycli
应该就是你的菜了...
一言胜千言:
具体的用法,参照官方文档:
以下说明操作多个数据库的方式:
使用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)>
显示所有的连接信息:
$ 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