1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/mycli.md

17 lines
535 B
Markdown
Raw Normal View History

2019-06-22 23:37:46 +08:00
# mycli
> A CLI for MySQL, MariaDB, and Percona that can do auto-completion and syntax highlighting.
> More information: <https://manned.org/mycli>.
2019-06-22 23:37:46 +08:00
- Connect to a local database on port 3306, using the current user's username:
`mycli {{database_name}}`
- Connect to a database (user will be prompted for a password):
`mycli {{[-u|--user]}} {{username}} {{database_name}}`
2019-06-22 23:37:46 +08:00
- Connect to a database on another host:
`mycli {{[-h|--host]}} {{database_host}} {{[-P|--port]}} {{port}} {{[-u|--user]}} {{username}} {{database_name}}`