mycli
mycli copied to clipboard
A Terminal Client for MySQL with AutoCompletion and Syntax Highlighting.
## Description Open mycli and type (including quotes): `'where i=';` Press Enter. mycli will abort with exception: ``` Traceback (most recent call last): File "/home/jmv/work/mycli/mycli/main.py", line 1420, in cli() File...
## Description Another step towards #950: building and testing the executable, for now only on Linux. It passes the behave suite, but isn't yet fully functional: as I haven't been...
…tabase connector ## Description Fixes #953 ## Checklist - [x] I've added this contribution to the `changelog.md`. - [x] I've added my name to the `AUTHORS` file (or it's already...
## Description xref #915 The `utf8` character set in current MySQL versions is not actually standards-compliant. The standards-compliant UTF-8 character set is spelled `utf8mb4`, and that should be mycli's default....
## Description Since the `pygments` library is already required, why not use its list of reserved words for completions? This fixes #767 and should keep us up-to-date. It's really great...
## Description We were spawning a separate SSH connection for the completer thread. It seems unnecessary since we can just open a second channel on the same connection. ## Checklist...
## Description This makes it so your favorite queries can use special commands. For example, you might have a regular export or command you run that should use a particular...
Disabling pager, or using `cat`, `vim -`, `more`, `less -RXF` as a pager, always return the results with a `...` suffix, the only way to remove it is by using...
Hey all, Came here with what I hope is a quick question as I have been trying to get my head around this one now for a few days and...
in ~/.myclirc file I have ``` [favorite_queries] q1 = '''SOURCE /Users/eric/InWork/sql/q1.sql;''' ``` Then attempting to list and run it, I get error 1064. Any ideas if the SOURCE command is...