You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
![]() |
5 years ago | |
---|---|---|
.github | 5 years ago | |
.vscode | 5 years ago | |
images | 5 years ago | |
public | 5 years ago | |
resources | 5 years ago | |
src | 5 years ago | |
syntaxes | 5 years ago | |
types | 5 years ago | |
.gitignore | 5 years ago | |
.vscodeignore | 5 years ago | |
CHANGELOG.md | 5 years ago | |
LICENSE | 5 years ago | |
README.md | 5 years ago | |
README_CN.md | 5 years ago | |
backlog.md | 5 years ago | |
i18n.js | 5 years ago | |
package.json | 5 years ago | |
package.nls.json | 5 years ago | |
package.nls.zh-cn.json | 5 years ago | |
postcss.config.js | 5 years ago | |
tailwind.config.js | 5 years ago | |
tsconfig.json | 5 years ago | |
webpack.config.js | 5 years ago | |
webpack.config.lib.js | 5 years ago |
README.md
Database Client
Database Client for Visual Studio Code. It supports databases MySQL/MariaDB, Microsoft SQL Server, PostgreSQL, Redis, and ElasticSearch.
Project site: vscode-database-client, 中文文档
Features
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
ext install cweijan.vscode-mysql-client2
Connect
- Open Database Explorer panel, then click the
+
button. - Select your database type, input your database connection information then click the connect button.
Table
- Click table to open table view.
- Then you can do data modification on the view page.
Execute SQL Query
In the Database Explorer panel, click the Open Query
button.
That will open a sql editor bind of database, it provider:
- IntelliSense sql edit.
- snippets:
sel、del、ins、upd、joi
... - run sql.
Generate Mock Data
Now you do not need to spend time writing test data.
History
Click the history button to open the list of recently executed query history records.
Backup/Import
Move to ant DatabaseNode or TableNode. The export/import options are listed in the context menu (right click to open).
Filter
Credits
- vscode-mysql: The original version of this extension.
- mysqldump: Data dump lib.
- sql-formatter Sql format lib.
- umy-ui: Result view render.
- Core Lib:
- node-mysql2 : Mysql client.
- node-postgres: PostgreSql client.
- tedious: SqlServer client.