Browse Source

Update README.md

pull/88/head
Chen WeiJian 5 years ago
committed by GitHub
parent
commit
cf3f215d39
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 23
      README.md

23
README.md

@ -22,6 +22,16 @@ MySQL Client For Visual Studio Code
- [RoadMap](#roadmap)
- [Sponsor](#sponsor)
## Regarding MySQL 8.0 support
While this plugin can connect to a MySQL 8.0 server, the newer authentication methods are not supported.
To change a user's authentication method to the older one supported by this plugin, run the following query:
```sql
alter user my_user@'%' identified with mysql_native_password by "myPassword";
```
## Installation
Install from vscode marketplace [vscode-mysql](https://marketplace.visualstudio.com/items?itemName=cweijan.vscode-mysql-client2).
@ -76,21 +86,14 @@ OpenSetting -> extensions -> Mysql
![suprise](images/surprise.jpg)
## Regarding MySQL 8.0 support
While this plugin can connect to a MySQL 8.0 server, the newer authentication methods are not supported.
To change a user's authentication method to the older one supported by this plugin, run the following query:
```sql
alter user my_user@'%' identified with mysql_native_password by "myPassword";
```
## RoadMap
- Sync table struct from diffrent connection.
- Fix Intetllisense sql.
- Better sql formatter.
## Filter
![filter](images/filter.gif)
## Sponsor
- [Jetbrains](https://www.jetbrains.com/)
Loading…
Cancel
Save