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.
 
 
 
 
Don Alfons Nisnoni 5a9cbebcdc
Fix issue when choose file for sqlite db and choose file for ssh cert
3 years ago
.github Update bug_report.md 3 years ago
.vscode update webpack config 5 years ago
images 更新文档 3 years ago
public 更新文档 3 years ago
resources Update mongo icon. 4 years ago
sqlite Remove sqlite binary. 4 years ago
src Fix issue when choose file for sqlite db and choose file for ssh cert 3 years ago
syntaxes Enhance codelen detect. 4 years ago
test Init document generate. 4 years ago
types Integrate sqlformatter. 5 years ago
.gitignore feat:调整FolderNode构造函数的参数类型 5 years ago
.vscodeignore Add ignore 5 years ago
CHANGELOG.md Version 3.9.8. 4 years ago
LICENSE Update license. 5 years ago
README.md Update README.md 3 years ago
README_CN.md Update README_CN.md 3 years ago
backlog.md Integrate rows as node tooltip. 5 years ago
build.js Init esbuild. 4 years ago
i18n.js Add i18n of chinese. 5 years ago
package.json Version 3.9.8. 4 years ago
package.nls.json Add run query command. 4 years ago
package.nls.zh-cn.json Add run query command. 4 years ago
postcss.config.js Add tailwindcss, postcss package and its configurations 5 years ago
tailwind.config.js Add tailwindcss, postcss package and its configurations 5 years ago
tsconfig.json Using es6 default import. 4 years ago
webpack.config.js Remvoe ~. 4 years ago
webpack.config.lib.js Trim project. 4 years ago

README.md

Database Client for Visual Studio Code

The online document is migrate to https://doc.database-client.com.


GitHub


This project is a database client for VSCode, supports manager MySQL/MariaDB, PostgreSQL, SQLite, Redis, ClickHouse, 达梦, and ElasticSearch, and works as an SSH client, boost your maximum productivity!

Project site: vscode-database-client, 中文文档

Logo

Features

Installation

Install from vscode marketplace vscode-database-client.

Connect

  1. Open Database Explorer panel, then click the + button.
  2. Select your database type, input connection config then click the connect button.

connection

Two panels are created because in some cases you need to view both SQL and NoSQL data at the same time, you can drag the panel to the other by long-pressing.

Table

  1. Click table to open table view.
  2. Click button beside table to open new table view.
  3. Then you can do data modification on the table view.

query

Execute SQL Query

In the Database Explorer panel, click the Open Query button.

newquery

That will open a SQL editor bind of database, it provider:

  1. IntelliSense SQL edit.
  2. snippets:sel、del、ins、upd、joi...
  3. Run selected or current cursor SQL (Shortcut : Ctrl+Enter).
  4. Run all SQL (Shortcut : Ctrl+Shift+Enter).

Note: The extension is developed using Nodejs. Nodejs does not allow duplicate name attributes, so you need to avoid columns with the same name in your query, otherwise the results will not be displayed in full.

run

This extension supports codelen, but does not support stored procedures and functions. If you use them frequently, it is recommended to disable codelen image

Cache

In order to improve performance, the database information is cached. If your database structure changes externally, you need to click the refresh button to refresh the cache。

Backup/Import

Move to ant DatabaseNode or TableNode. The export/import options are listed in the context menu (right click to open).

The extension implements the backup function, but it is not stable enough. You can add mysql_dump or pg_dump to the environment variable, and the extension will use these tools for backup.

bakcup

Setting

This extension contain some setting, can be modified as follows.

The default settings can get the best experience, don't worry

image

Filter

Used to quickly filter the table, if there is an input box to simplify the search operation, but unfortunately VSCode does not support this function.

filter

Generate Mock Data

You can easily generate test data.

mockData

History

Click the history button to open the list of recently executed query history records.

history

Credits