mycli icon indicating copy to clipboard operation
mycli copied to clipboard

A Terminal Client for MySQL with AutoCompletion and Syntax Highlighting.

Results 162 mycli issues
Sort by recently updated
recently updated
newest added

## Description according to pull request #1055 and file setup.py ` # Pinning cryptography should not be needed after paramiko 2.11.0.` Now that paramiko's version is 3.1.0, arch package python-paramiko...

Hi, Could you please add support for ssh via jumpserver or proxycommand? For example: https://docs.paramiko.org/en/3.4/api/proxy.html

When connecting using `mycli` I see the following on the console. ``` $ mycli Connecting to socket /var/run/mysqld/mysqlx.sock, owned by user mysql unpack requires a buffer of 4 bytes $...

## Background a default prompt (`\\t \\u@\\h:\\d> `) is already defined inside MyCli class. however it does not work properly when the total length exceeds 45 characters. ## how to...

## Description default prompt option not working when exceeds max limit, which is 45 chars. in this circumstance, only the databasename is show, which is a bit inconvenient and unexpected...

mycli 1.27.0 has requirement cryptography==36.0.2, but you have cryptography 41.0.5.

I have a sql with newlines on csv so csv isn't the best tool,

```mysql mycli> USE db1 mycli> SELECT * FROM db1.tb1 t1 JOIN db2.tb2 t2 ON t1.= t2. ``` cursor_1 can auto complete, but cursor_2 nothing shows. ```mysql mycli> SELECT * FROM...

It should be possible to list other databases as schema names and provide column completions for them. Caveats: - This requires fetching all the databases, tables and their columns. Which...

enhancement

# Description It would be helpful to have a user name in a password prompt similarly as `pgcli` does, for example. In `mycli` the code creating a prompt is: ```python...