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.
 
 
 
 
Weijan Chen da698b512c
Merge pull request #1477 from tonyatml/main
4 months ago
.github Update bug_report.md 2 years ago
.vscode update webpack config 5 years ago
image Add doc images. 1 year ago
images Add files via upload 7 months ago
public 更新文档 3 years ago
resources Update mongo icon. 4 years ago
sqlite Remove sqlite binary. 4 years ago
src Add Exasol db connection support. 4 months ago
syntaxes Enhance codelen detect. 4 years ago
test Init document generate. 4 years ago
types Integrate sqlformatter. 5 years ago
.DS_Store Add Exasol db connection support. 4 months 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 7 months ago
README_CN.md Update README_CN.md 6 months 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 Add Exasol db connection support. 4 months 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

This repository contains the early source code. The new version is closed source.


This project is a database client for Visual Studio Code, supporting the management MySQL/MariaDB, PostgreSQL, SQLite, Redis, ClickHouse, 达梦, and ElasticSearch, and works as an SSH client, boost your maximum productivity!

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

Logo

Installation

Install from the Visual Studio Code Marketplace or Open VSX.

Telemetry Reporting

The Database Client extension will collects and sends anonymous usage data to the Database Client server to help improve our products and services. Read our Privacy Statement to learn more.

Telemetry reporting follows the telemetry settings of VS Code. Additionally, you can independently disable it by setting "database-client.telemetry.usesOnlineServices": false.

Connect

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

connection

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, Command ID: mysql.runSQL).

run

The database can be searched by clicking the search button to the right of "Tables".

1708594027208

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

The extension provides some settings, you can refer to the following operations to go to the console settings.

1708593458624

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