author
int64
658
755k
date
stringdate
2012-06-12 08:34:29
2024-07-22 14:51:21
timezone
int64
-46,800
43.2k
hash
stringlengths
40
40
message
stringlengths
5
490
mods
listlengths
1
16
language
stringclasses
20 values
license
stringclasses
3 values
repo
stringlengths
5
68
original_message
stringlengths
12
491
141,908
15.05.2021 10:53:32
-28,800
327c649e238892e7fc4ee771c7860c680ec38137
Version 3.8.2.
[ { "change_type": "MODIFY", "old_path": "CHANGELOG.md", "new_path": "CHANGELOG.md", "diff": "# CHANGELOG\n+# 3.8.2 2021-5-15\n+\n+- Connection keep origin position when edit.\n+- Support export SQLite data and struct.\n+- Fix possible connection delete bug.\n+\n# 3.8.0 2021-5-14\n- Support sqlite.\n"...
TypeScript
MIT License
cweijan/vscode-database-client
Version 3.8.2.
141,908
17.05.2021 09:50:06
-28,800
72cacade11d70796e275aac16c1855a090fae0de
Fix pg duplicate columns.
[ { "change_type": "MODIFY", "old_path": "src/service/dialect/postgreSqlDialect.ts", "new_path": "src/service/dialect/postgreSqlDialect.ts", "diff": "@@ -155,8 +155,9 @@ ALTER TABLE ${table} ALTER COLUMN ${columnName} ${defaultDefinition};`;\ninformation_schema.columns c\nleft join information_schema....
TypeScript
MIT License
cweijan/vscode-database-client
Fix pg duplicate columns.
141,908
17.05.2021 09:57:58
-28,800
97a8ff712801b95583476de61d71dae0cb18fc66
Fix list tables duplicate.
[ { "change_type": "MODIFY", "old_path": "src/service/dialect/postgreSqlDialect.ts", "new_path": "src/service/dialect/postgreSqlDialect.ts", "diff": "@@ -181,8 +181,8 @@ ALTER TABLE ${table} ALTER COLUMN ${columnName} ${defaultDefinition};`;\nshowTables(database: string): string {\nreturn ` SELECT t.t...
TypeScript
MIT License
cweijan/vscode-database-client
Fix list tables duplicate.
141,908
17.05.2021 16:39:23
-28,800
006e11b0879ecd052f26a955bf99202ab9a05b93
Add schema keyword.
[ { "change_type": "MODIFY", "old_path": "src/provider/complete/chain/keywordChain.ts", "new_path": "src/provider/complete/chain/keywordChain.ts", "diff": "@@ -3,7 +3,7 @@ import { ComplectionChain, ComplectionContext } from \"../complectionContext\";\nexport class KeywordChain implements ComplectionC...
TypeScript
MIT License
cweijan/vscode-database-client
Add schema keyword.
141,908
17.05.2021 17:36:43
-28,800
f96e006b5f6453f66c308586b7eea4eb7d717a01
Support show mongo data.
[ { "change_type": "MODIFY", "old_path": "src/model/database/catalogNode.ts", "new_path": "src/model/database/catalogNode.ts", "diff": "@@ -2,11 +2,12 @@ import { DbTreeDataProvider } from \"@/provider/treeDataProvider\";\nimport { DatabaseCache } from \"@/service/common/databaseCache\";\nimport { Que...
TypeScript
MIT License
cweijan/vscode-database-client
Support show mongo data.
141,908
17.05.2021 17:40:03
-28,800
989953f38ccc9ae230f7356cf6a4774aa7918efc
Remove mongo group.
[ { "change_type": "MODIFY", "old_path": "src/model/database/catalogNode.ts", "new_path": "src/model/database/catalogNode.ts", "diff": "@@ -30,7 +30,7 @@ export class CatalogNode extends Node implements CopyAble {\npublic getChildren(): Promise<Node[]> | Node[] {\nif(this.dbType==DatabaseType.MONGO_DB...
TypeScript
MIT License
cweijan/vscode-database-client
Remove mongo group.
141,908
17.05.2021 17:42:19
-28,800
dc0cc5611f1728136aefc10d4a9376287cfc35c5
Add mongo icon.
[ { "change_type": "ADD", "old_path": null, "new_path": "resources/icon/mongodb-icon.svg", "diff": "+<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 31 67\" fill=\"#fff\" fill-rule=\"evenodd\" stroke=\"#000\" stroke-linecap=\"round\" stroke-linejoin...
TypeScript
MIT License
cweijan/vscode-database-client
Add mongo icon.
141,908
17.05.2021 17:46:24
-28,800
a4aed6baa30f7ff8a3d9ff6865515219866e47d7
Update mongo icon.
[ { "change_type": "MODIFY", "old_path": "resources/icon/mongodb-icon.svg", "new_path": "resources/icon/mongodb-icon.svg", "diff": "-<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 31 67\" fill=\"#fff\" fill-rule=\"evenodd\" stroke=\"#000\" stroke-l...
TypeScript
MIT License
cweijan/vscode-database-client
Update mongo icon.
141,908
18.05.2021 10:45:46
-28,800
e7ab51c34043002035344452298901597e011b5b
Add timeout detech.
[ { "change_type": "MODIFY", "old_path": "src/provider/treeDataProvider.ts", "new_path": "src/provider/treeDataProvider.ts", "diff": "@@ -28,18 +28,25 @@ export class DbTreeDataProvider implements vscode.TreeDataProvider<Node> {\n}\npublic async getChildren(element?: Node): Promise<Node[]> {\n+ return...
TypeScript
MIT License
cweijan/vscode-database-client
Add timeout detech.
141,908
18.05.2021 10:48:35
-28,800
f8bf6533a3df44444b0b357019518b6307640c10
Mongo support auth.
[ { "change_type": "MODIFY", "old_path": "src/service/connect/mongoConnection.ts", "new_path": "src/service/connect/mongoConnection.ts", "diff": "@@ -10,7 +10,13 @@ export class MongoConnection extends IConnection {\n}\nconnect(callback: (err: Error) => void): void {\n- MongoClient.connect(`mongodb://...
TypeScript
MIT License
cweijan/vscode-database-client
Mongo support auth.
141,908
18.05.2021 11:03:27
-28,800
ae3a4e59aa96d7d882ab207b691f60060165a4e9
Support open mongo terminal.
[ { "change_type": "MODIFY", "old_path": "src/model/interface/node.ts", "new_path": "src/model/interface/node.ts", "diff": "@@ -289,6 +289,9 @@ export abstract class Node extends vscode.TreeItem implements CopyAble {\n}else if(this.dbType==DatabaseType.REDIS){\nthis.checkCommand('redis-cli');\ncommand...
TypeScript
MIT License
cweijan/vscode-database-client
Support open mongo terminal.
141,908
18.05.2021 11:08:05
-28,800
d88e304bab926d2b9595c0ed1f486fe623bd3731
Support open sqlite shell.
[ { "change_type": "MODIFY", "old_path": "src/model/interface/node.ts", "new_path": "src/model/interface/node.ts", "diff": "@@ -2,6 +2,7 @@ import { Console } from \"@/common/Console\";\nimport { DatabaseType, ModelType } from \"@/common/constants\";\nimport { Util } from \"@/common/util\";\nimport { ...
TypeScript
MIT License
cweijan/vscode-database-client
Support open sqlite shell.
141,908
18.05.2021 11:20:11
-28,800
0cb9564fcbf7fa2458ad296b8d1e84408e34a86a
Mongo support use ssl.
[ { "change_type": "MODIFY", "old_path": "src/service/connect/mongoConnection.ts", "new_path": "src/service/connect/mongoConnection.ts", "diff": "+import * as fs from \"fs\";\nimport { Node } from \"@/model/interface/node\";\n-import { MongoClient } from \"mongodb\";\n+import { MongoClient, MongoClien...
TypeScript
MIT License
cweijan/vscode-database-client
Mongo support use ssl.
141,908
18.05.2021 11:30:09
-28,800
a524d21a2e90ef6d9fe3a5223842e333e77ae863
Support reconnect mongo
[ { "change_type": "MODIFY", "old_path": "src/model/mongo/mongoBaseNode.ts", "new_path": "src/model/mongo/mongoBaseNode.ts", "diff": "@@ -6,8 +6,8 @@ import { Node } from \"../interface/node\";\nexport class MonggoBaseNode extends Node{\npublic async getClient(): Promise<MongoClient> {\n- const redis ...
TypeScript
MIT License
cweijan/vscode-database-client
Support reconnect mongo
141,908
18.05.2021 15:19:55
-28,800
3eebb22d7c9e7cc4fcf9ee8ef24b173ed6da228d
Fix ftp icon gone.
[ { "change_type": "MODIFY", "old_path": "src/model/ftp/ftpConnectionNode.ts", "new_path": "src/model/ftp/ftpConnectionNode.ts", "diff": "@@ -19,7 +19,7 @@ export class FTPConnectionNode extends FtpBaseNode {\nthis.contextValue = this.file ? ModelType.FTP_FOLDER : ModelType.FTP_CONNECTION;\nthis.init(...
TypeScript
MIT License
cweijan/vscode-database-client
Fix ftp icon gone.
141,908
18.05.2021 15:56:03
-28,800
ae4999b9a227a999ad1b7b205b4b65ad2739c948
Support crud by mongo.
[ { "change_type": "MODIFY", "old_path": "src/service/connect/mongoConnection.ts", "new_path": "src/service/connect/mongoConnection.ts", "diff": "import * as fs from \"fs\";\nimport { Node } from \"@/model/interface/node\";\n-import { MongoClient, MongoClientOptions } from \"mongodb\";\n+import { Mong...
TypeScript
MIT License
cweijan/vscode-database-client
Support crud by mongo.
141,908
18.05.2021 16:00:39
-28,800
6166fdd032cc538958c9523a7f8243831a9f73c9
Version 3.8.3.
[ { "change_type": "MODIFY", "old_path": "CHANGELOG.md", "new_path": "CHANGELOG.md", "diff": "# CHANGELOG\n+# 3.8.3 2021-5-18\n+\n+- Support connect to MongoDB.\n+- Fix postgresql duplicate tables.\n+\n# 3.8.2 2021-5-15\n- Connection keep origin position when edit.\n" }, { "change_type": "MODI...
TypeScript
MIT License
cweijan/vscode-database-client
Version 3.8.3.
141,908
24.05.2021 09:28:16
-28,800
cd99ba5117e4dafab94d70a2d20c0d8139fade42
Fix ssh forward icon gone.
[ { "change_type": "MODIFY", "old_path": "src/service/ssh/forward/forwardService.ts", "new_path": "src/service/ssh/forward/forwardService.ts", "diff": "@@ -24,7 +24,7 @@ export class ForwardService {\npublic createForwardView(sshConfig: SSHConfig) {\nViewManager.createWebviewPanel({\n- iconPath: join(...
TypeScript
MIT License
cweijan/vscode-database-client
Fix ssh forward icon gone.
141,908
24.05.2021 11:28:58
-28,800
0f921a0819b6e28f68719fc1473ca18dc1523908
Extra row component from result view.
[ { "change_type": "MODIFY", "old_path": "src/vue/result/App.vue", "new_path": "src/vue/result/App.vue", "diff": "<el-input type=\"textarea\" :autosize=\"{ minRows:2, maxRows:5}\" v-model=\"toolbar.sql\" class=\"sql-pannel\" />\n</div>\n<div class=\"toolbar\">\n- <el-button v-if=\"showFullBtn\" @click...
TypeScript
MIT License
cweijan/vscode-database-client
Extra row component from result view.
141,908
24.05.2021 15:51:54
-28,800
8a2ee73030b2241bab6b38c2471ffc5621464d80
Detech by path.
[ { "change_type": "MODIFY", "old_path": "src/service/connect/sqlite/sqliteCommandValidation.ts", "new_path": "src/service/connect/sqlite/sqliteCommandValidation.ts", "diff": "@@ -2,6 +2,7 @@ import { Global } from '@/common/global';\nimport { spawnSync } from 'child_process';\nimport { existsSync } f...
TypeScript
MIT License
cweijan/vscode-database-client
Detech by path.
141,908
24.05.2021 16:02:56
-28,800
9c9efcc7868d08524c9088dff886c4d3b0e4f184
Add name of panel.
[ { "change_type": "MODIFY", "old_path": "package.json", "new_path": "package.json", "diff": "\"activitybar\": [\n{\n\"id\": \"github-cweijan-mysql\",\n- \"title\": \"Database Explorer\",\n+ \"title\": \"Explorer\",\n\"icon\": \"resources/icon/database-container.svg\"\n},\n{\n\"id\": \"github-cweijan-...
TypeScript
MIT License
cweijan/vscode-database-client
Add name of panel.
141,908
24.05.2021 16:26:01
-28,800
26f2cb59633bb743c1f71c792e9b2e18514f9907
Version 3.8.5.
[ { "change_type": "MODIFY", "old_path": "package.json", "new_path": "package.json", "diff": "\"name\": \"vscode-mysql-client2\",\n\"displayName\": \"MySQL\",\n\"description\": \"Database Client for vscode\",\n- \"version\": \"3.8.4\",\n+ \"version\": \"3.8.5\",\n\"publisher\": \"cweijan\",\n\"icon\":...
TypeScript
MIT License
cweijan/vscode-database-client
Version 3.8.5.
141,908
25.05.2021 10:24:18
-28,800
206b13c6bc8b36212aa4866b29e2528416a9dd26
Redis connection support ssl
[ { "change_type": "MODIFY", "old_path": "src/service/connect/redisConnection.ts", "new_path": "src/service/connect/redisConnection.ts", "diff": "import { Node } from \"@/model/interface/node\";\nimport { IConnection, queryCallback } from \"./connection\";\n-\n+import * as fs from \"fs\";\nimport * as...
TypeScript
MIT License
cweijan/vscode-database-client
Redis connection support ssl
141,908
03.06.2021 14:13:06
-28,800
1c2823bf4e3faa12b3c87524bc0c13214d18d7c2
Fix parse empty string or zero to null.
[ { "change_type": "MODIFY", "old_path": "src/vue/result/component/Row/index.vue", "new_path": "src/vue/result/component/Row/index.vue", "diff": "</template>\n<template v-else>\n<div class=\"edit-column\" :contenteditable=\"editable\" style=\"height: 100%; line-height: 33px;\" @input=\"editListen($eve...
TypeScript
MIT License
cweijan/vscode-database-client
Fix parse empty string or zero to null.
141,908
03.06.2021 14:14:57
-28,800
90f1bf4ea0eeaf0be5f3e5af30d8cdd3592ad604
Version 3.8.6.
[ { "change_type": "MODIFY", "old_path": "CHANGELOG.md", "new_path": "CHANGELOG.md", "diff": "# CHANGELOG\n+# 3.8.6 2021-6-3\n+\n+- Support connect redis with ssl.\n+- Fix parse empty string or zero as null on result.\n+\n# 3.8.3 2021-5-18\n- Support connect to MongoDB.\n" }, { "change_type": ...
TypeScript
MIT License
cweijan/vscode-database-client
Version 3.8.6.
141,908
03.06.2021 20:43:51
-28,800
b5b3c3f69c3f006369c623ba0b5560caeda86da8
Fix drop trigger error template.
[ { "change_type": "MODIFY", "old_path": "src/service/dialect/sqlDialect.ts", "new_path": "src/service/dialect/sqlDialect.ts", "diff": "@@ -50,7 +50,7 @@ export abstract class SqlDialect {\nreturn null;\n}\ndropTriggerTemplate(name: string): string {\n- return `DROP IF EXISTS TRIGGER ${name}`\n+ retur...
TypeScript
MIT License
cweijan/vscode-database-client
Fix drop trigger error template.
141,908
08.06.2021 09:07:42
-28,800
e2fb414d039d511bad3c1e16607e2d231e49456e
Prefer sqlite3 command in path.
[ { "change_type": "MODIFY", "old_path": "src/service/connect/sqlite/sqliteCommandValidation.ts", "new_path": "src/service/connect/sqlite/sqliteCommandValidation.ts", "diff": "@@ -50,6 +50,11 @@ export function isSqliteCommandValid(sqliteCommand: string) {\n* If there are no binaries for the platform ...
TypeScript
MIT License
cweijan/vscode-database-client
Prefer sqlite3 command in path.
141,908
08.06.2021 10:43:26
-28,800
0a386f38077597cb29dabaa16813076affaacd10
Update toolbar.
[ { "change_type": "MODIFY", "old_path": "src/service/result/query.ts", "new_path": "src/service/result/query.ts", "diff": "@@ -76,6 +76,8 @@ export class QueryPage {\n})\n}).on('changePageSize', (pageSize) => {\nGlobal.updateConfig(ConfigKey.DEFAULT_LIMIT, pageSize)\n+ }).on('openGithub', () => {\n+ ...
TypeScript
MIT License
cweijan/vscode-database-client
Update toolbar.
141,908
08.06.2021 11:53:16
-28,800
8e9998143b450441ad5c1e4cf9cc13d9f498d288
Update toolbar style again.
[ { "change_type": "MODIFY", "old_path": "src/vue/result/component/Toolbar/index.vue", "new_path": "src/vue/result/component/Toolbar/index.vue", "diff": "@@ -58,10 +58,28 @@ export default {\nmargin-left: 7px;\n}\n-.el-button:focus, .el-button:hover {\n- color: #409EFF !important;\n+.el-button:focus,\...
TypeScript
MIT License
cweijan/vscode-database-client
Update toolbar style again.
141,908
08.06.2021 11:56:56
-28,800
cdacf38efc780ecdee2760f9da5fa28275a5b360
Version 3.8.7.
[ { "change_type": "MODIFY", "old_path": "CHANGELOG.md", "new_path": "CHANGELOG.md", "diff": "# CHANGELOG\n+# 3.8.7 2021-6-8\n+\n+- Update toolbar style.\n+- Fix trigger template error.\n+- Support using sqlite3 from path.\n+\n# 3.8.6 2021-6-3\n- Support connect redis with ssl.\n" }, { "change...
TypeScript
MIT License
cweijan/vscode-database-client
Version 3.8.7.
141,908
10.06.2021 08:59:27
-28,800
75f1e023ee734ee63ef3278d38c0a654eb9c4947
Change focus color.
[ { "change_type": "MODIFY", "old_path": "src/vue/result/component/Toolbar/index.vue", "new_path": "src/vue/result/component/Toolbar/index.vue", "diff": "@@ -58,7 +58,11 @@ export default {\nmargin-left: 7px;\n}\n-.el-button:focus,\n+.el-button:focus{\n+ color: inherit !important;\n+ background-color:...
TypeScript
MIT License
cweijan/vscode-database-client
Change focus color.
141,908
10.06.2021 09:01:18
-28,800
b23210dd351aa3c5696c003ad0c5a738116bba18
Update height.
[ { "change_type": "MODIFY", "old_path": "src/vue/result/App.vue", "new_path": "src/vue/result/App.vue", "diff": "@@ -99,10 +99,10 @@ export default {\n};\n},\nmounted() {\n- this.remainHeight = window.innerHeight - 120;\n+ this.remainHeight = window.innerHeight - 90;\nthis.showFullBtn = window.outerW...
TypeScript
MIT License
cweijan/vscode-database-client
Update height.
141,908
11.06.2021 21:26:52
-28,800
30a1b6f93965dd14c0a4d122db1c975ca0569c7f
Fix export occur undefined
[ { "change_type": "MODIFY", "old_path": "src/service/export/exportService.ts", "new_path": "src/service/export/exportService.ts", "diff": "@@ -97,7 +97,7 @@ export class ExportService {\nlet values = \"\";\nfor (const key in row) {\ncolumns += `${key},`\n- values += `'${row[key]}',`\n+ values += `${r...
TypeScript
MIT License
cweijan/vscode-database-client
Fix export occur undefined #218.
141,908
11.06.2021 21:32:36
-28,800
cf64823b3069534766ad2471306ecb326a92740a
Postgresql query with quote
[ { "change_type": "MODIFY", "old_path": "src/common/wrapper.js", "new_path": "src/common/wrapper.js", "diff": "*/\nexport function wrapByDb(origin, databaseType) {\nif (origin == null) { return origin; }\n+ if (databaseType == 'PostgreSQL') {\n+ return origin.split(\".\").map(text => `\"${text}\"`).j...
TypeScript
MIT License
cweijan/vscode-database-client
Postgresql query with quote #217.
141,908
11.06.2021 21:51:20
-28,800
dddf325235ca5f6a643af328d2e5716358027a2b
Remove legacy config.
[ { "change_type": "MODIFY", "old_path": "package.json", "new_path": "package.json", "diff": "\"type\": \"object\",\n\"title\": \"%config.title%\",\n\"properties\": {\n- \"database-client.enableDelimiter\": {\n- \"type\": \"boolean\",\n- \"default\": false,\n- \"description\": \"%config.enableDelimite...
TypeScript
MIT License
cweijan/vscode-database-client
Remove legacy config.
141,908
11.06.2021 21:59:32
-28,800
f94564d687a296902e236b20d73791c43e5bc722
Prefre using connection name
[ { "change_type": "MODIFY", "old_path": "package.json", "new_path": "package.json", "diff": "\"default\": 100,\n\"description\": \"%config.defaultSelectLimit%\"\n},\n+ \"database-client.prefreConnectionName\": {\n+ \"type\": \"boolean\",\n+ \"default\": true,\n+ \"description\": \"%config.prefreConne...
TypeScript
MIT License
cweijan/vscode-database-client
Prefre using connection name #215.
141,908
11.06.2021 22:12:53
-28,800
5b149924019cd69f83378027b9d412ba0bdff22e
Don't use utc of mssql
[ { "change_type": "MODIFY", "old_path": "src/service/connect/mssqlConnection.ts", "new_path": "src/service/connect/mssqlConnection.ts", "diff": "@@ -19,6 +19,7 @@ export class MSSqlConnnection extends ConnectionPool<Connection>{\noptions: {\nport: node.instanceName?undefined:parseInt(node.port as any...
TypeScript
MIT License
cweijan/vscode-database-client
Don't use utc of mssql #199.
141,908
11.06.2021 22:16:06
-28,800
1438e481f1c25f77cc8a6875625947bc594947ad
Version 3.8.8.
[ { "change_type": "MODIFY", "old_path": "CHANGELOG.md", "new_path": "CHANGELOG.md", "diff": "# CHANGELOG\n+# 3.8.8 2021-6-11\n+\n+- Fix date incorrect of sqlserver #199.\n+- Prefre using connection name #215.\n+- Postgresql query with quote #217.\n+- Fix export occur undefined #218.\n+\n# 3.8.7 2021-...
TypeScript
MIT License
cweijan/vscode-database-client
Version 3.8.8.
141,908
12.06.2021 02:44:06
-28,800
92390596975e65e4a2c4826f7f28e3e096738910
Init document generate.
[ { "change_type": "MODIFY", "old_path": "package.json", "new_path": "package.json", "diff": "\"title\": \"%command.struct.export%\",\n\"category\": \"MySQL\"\n},\n+ {\n+ \"command\": \"mysql.document.generate\",\n+ \"title\": \"%command.document.generate%\",\n+ \"category\": \"MySQL\"\n+ },\n{\n\"com...
TypeScript
MIT License
cweijan/vscode-database-client
Init document generate.
141,905
12.06.2021 21:46:41
-28,800
b6f2fd9b9a8182a5debc189e3c85fe3211a208af
fix missing field while value is NULL on json export
[ { "change_type": "MODIFY", "old_path": "src/service/export/exportService.ts", "new_path": "src/service/export/exportService.ts", "diff": "@@ -80,6 +80,10 @@ export class ExportService {\n}\nprivate exportToJson(context: ExportContext) {\n+ for (const row of context.rows)\n+ for (const key in row)\n+...
TypeScript
MIT License
cweijan/vscode-database-client
fix missing field while value is NULL on json export
141,908
12.06.2021 23:31:07
-28,800
9cae127de33e6b23f81c7e6838aa1be18fe7b5d2
Improve export performance.
[ { "change_type": "MODIFY", "old_path": "src/service/export/exportService.ts", "new_path": "src/service/export/exportService.ts", "diff": "@@ -80,11 +80,7 @@ export class ExportService {\n}\nprivate exportToJson(context: ExportContext) {\n- for (const row of context.rows)\n- for (const key in row)\n-...
TypeScript
MIT License
cweijan/vscode-database-client
Improve export performance.
141,908
15.06.2021 18:02:57
-28,800
515aefb067fd3390193652b9d767a93036187fdf
Mongo support paging.
[ { "change_type": "MODIFY", "old_path": "src/service/connect/mongoConnection.ts", "new_path": "src/service/connect/mongoConnection.ts", "diff": "@@ -63,8 +63,10 @@ export class MongoConnection extends IConnection {\n} else {\ntry {\nconst result = await eval('this.client.' + sql)\n- if (!result) {\n+...
TypeScript
MIT License
cweijan/vscode-database-client
Mongo support paging.
141,908
15.06.2021 18:10:49
-28,800
4db0bbcbbc1b540e427df06af9b796bfe3f06a66
Add shortcut for execute
[ { "change_type": "MODIFY", "old_path": "src/vue/result/App.vue", "new_path": "src/vue/result/App.vue", "diff": "<div id=\"app\">\n<div class=\"hint\">\n<div style=\"width:95%;\">\n- <el-input type=\"textarea\" :autosize=\"{ minRows:2, maxRows:5}\" v-model=\"toolbar.sql\" class=\"sql-pannel\" />\n+ <...
TypeScript
MIT License
cweijan/vscode-database-client
Add shortcut for execute #220.
141,908
16.06.2021 09:42:28
-28,800
9e9175123c269cf7b6448952c989b27c91e34c2f
Fix mssql concat fail.
[ { "change_type": "MODIFY", "old_path": "src/service/dialect/mssqlDIalect.ts", "new_path": "src/service/dialect/mssqlDIalect.ts", "diff": "@@ -123,7 +123,7 @@ ALTER TABLE ${table} ALTER COLUMN ${column} ${type} ${defaultDefinition};\nTABLE_NAME 'name',ds.row_count rows\nFROM\nINFORMATION_SCHEMA.TABLE...
TypeScript
MIT License
cweijan/vscode-database-client
Fix mssql concat fail.
141,908
16.06.2021 10:21:07
-28,800
177623731c05e7ea955b23698841b9c613a7e8c7
Fix pagination fail.
[ { "change_type": "MODIFY", "old_path": "src/vue/result/component/Toolbar/index.vue", "new_path": "src/vue/result/component/Toolbar/index.vue", "diff": "Cost: {{costTime}}ms\n</div>\n<div style=\"display:inline-block\">\n- <el-pagination @size-change=\"changePageSize\" @current-change=\"page=>$emit('...
TypeScript
MIT License
cweijan/vscode-database-client
Fix pagination fail.
141,908
16.06.2021 10:39:05
-28,800
fb5c0d4ccd607c67e587a647d735f8c94acf12a7
Mongo support change pagination.
[ { "change_type": "ADD", "old_path": null, "new_path": "src/service/page/mongoPageService.ts", "diff": "+import { AbstractPageSerivce } from \"./pageService\";\n+\n+export class MongoPageService extends AbstractPageSerivce{\n+ protected buildPageSql(sql: string, start: number, limit: number): string ...
TypeScript
MIT License
cweijan/vscode-database-client
Mongo support change pagination.
141,908
16.06.2021 10:47:04
-28,800
78a9d34349496342d9eb50525f37b47981a10b9b
Support show empty rows.
[ { "change_type": "MODIFY", "old_path": "src/model/main/tableNode.ts", "new_path": "src/model/main/tableNode.ts", "diff": "@@ -22,7 +22,7 @@ export class TableNode extends Node implements CopyAble {\nconstructor(readonly meta: TableMeta, readonly parent: Node) {\nsuper(`${meta.name}`)\nthis.table = m...
TypeScript
MIT License
cweijan/vscode-database-client
Support show empty rows.
141,908
16.06.2021 10:50:24
-28,800
64478e4ecde3a5c2f60db2745b58be44bec15e1b
Remove sqlite binary.
[ { "change_type": "DELETE", "old_path": "sqlite/sqlite-v3.26.0-linux-x64", "new_path": "sqlite/sqlite-v3.26.0-linux-x64", "diff": "Binary files a/sqlite/sqlite-v3.26.0-linux-x64 and /dev/null differ\n" }, { "change_type": "DELETE", "old_path": "sqlite/sqlite-v3.26.0-linux-x86", "new_p...
TypeScript
MIT License
cweijan/vscode-database-client
Remove sqlite binary.
141,908
16.06.2021 10:52:04
-28,800
630228b8148ca92d7b789ae9619565ae915159ad
Version 3.8.9.
[ { "change_type": "MODIFY", "old_path": "CHANGELOG.md", "new_path": "CHANGELOG.md", "diff": "# CHANGELOG\n+# 3.8.9 2021-6-16\n+\n+- Add shortcut of run sql on result view(ctrl+enter).\n+- Support generate database document.\n+- Fix bugs.\n+\n# 3.8.8 2021-6-11\n- Fix date incorrect of sqlserver #199.\...
TypeScript
MIT License
cweijan/vscode-database-client
Version 3.8.9.
141,908
16.06.2021 11:26:06
-28,800
6a4c45c3b9ddf3ed10ca4a2af7b7b247d34140ce
Support pagination of input sql.
[ { "change_type": "MODIFY", "old_path": "src/service/page/mongoPageService.ts", "new_path": "src/service/page/mongoPageService.ts", "diff": "@@ -8,4 +8,8 @@ export class MongoPageService extends AbstractPageSerivce{\nreturn sql.replace(/(\\.find.+?\\))/,`$1.skip(${start})`);\n}\n+ protected pageMatch...
TypeScript
MIT License
cweijan/vscode-database-client
Support pagination of input sql.
141,908
17.06.2021 16:21:43
-28,800
5df2ffa3d926e607836a22837ab063916bfca126
Fix terminal occur context menu.
[ { "change_type": "MODIFY", "old_path": "src/vue/xterm/index.vue", "new_path": "src/vue/xterm/index.vue", "diff": "}\n}))\n- terminal.open(document.getElementById('terminal-container'))\n+ const container=document.getElementById('terminal-container');\n+ terminal.open(container)\nfitAddon.fit()\nterm...
TypeScript
MIT License
cweijan/vscode-database-client
Fix terminal occur context menu.
141,908
17.06.2021 16:21:48
-28,800
74918efe1525aea39f8787948a306f70b1c94075
Trim warning.
[ { "change_type": "MODIFY", "old_path": "src/vue/design/IndexPanel.vue", "new_path": "src/vue/design/IndexPanel.vue", "diff": "<el-form :inline='true'>\n<el-form-item label=\"Column\">\n<el-select v-model=\"index.column\">\n- <el-option :label=\"column.name\" :value=\"column.name\" v-for=\"column in ...
TypeScript
MIT License
cweijan/vscode-database-client
Trim warning.
141,908
17.06.2021 20:25:25
-28,800
fa9a85185639a6cb0a6365cba8186e1b0b41d9d6
Sqlserver remove row count show.
[ { "change_type": "MODIFY", "old_path": "src/service/dialect/mssqlDIalect.ts", "new_path": "src/service/dialect/mssqlDIalect.ts", "diff": "@@ -119,15 +119,21 @@ ALTER TABLE ${table} ALTER COLUMN ${column} ${type} ${defaultDefinition};\nreturn `SELECT count(*) count FROM ${database}.${table};`;\n}\nsh...
TypeScript
MIT License
cweijan/vscode-database-client
Sqlserver remove row count show.
141,908
17.06.2021 21:28:16
-28,800
f84c19bdd8f4912759d66fe7e445a63c20de38d4
Codelen skip block comment.
[ { "change_type": "MODIFY", "old_path": "src/provider/sqlCodeLensProvider.ts", "new_path": "src/provider/sqlCodeLensProvider.ts", "diff": "@@ -26,14 +26,33 @@ export class SqlCodeLensProvider implements vscode.CodeLensProvider {\nlet start: vscode.Position;\nlet end: vscode.Position;\nlet sql: string...
TypeScript
MIT License
cweijan/vscode-database-client
Codelen skip block comment.
141,908
17.06.2021 21:35:42
-28,800
c9787345c763f46f6fcc74f647cde211bb156271
Init history provider.
[ { "change_type": "MODIFY", "old_path": "package.json", "new_path": "package.json", "diff": "\"id\": \"github.cweijan.mysql\",\n\"name\": \"Database\"\n}\n+\n],\n\"github-cweijan-nosql\": [\n{\n" }, { "change_type": "MODIFY", "old_path": "src/common/constants.ts", "new_path": "src/com...
TypeScript
MIT License
cweijan/vscode-database-client
Init history provider.
141,903
17.06.2021 21:23:43
-19,080
8a97985fec1664fd3d2a345bdbd00fca6d975307
Corrected spelling of prefer. So that it can display correctly on Extension settings.
[ { "change_type": "MODIFY", "old_path": "package.json", "new_path": "package.json", "diff": "\"default\": 100,\n\"description\": \"%config.defaultSelectLimit%\"\n},\n- \"database-client.prefreConnectionName\": {\n+ \"database-client.preferConnectionName\": {\n\"type\": \"boolean\",\n\"default\": true...
TypeScript
MIT License
cweijan/vscode-database-client
Corrected spelling of prefer. So that it can display correctly on Extension settings.
141,908
18.06.2021 09:39:27
-28,800
3dfb6385ef77cb07beb44348c5b7eb174b835d42
split edit and connect.
[ { "change_type": "MODIFY", "old_path": "src/service/connect/connectService.ts", "new_path": "src/service/connect/connectService.ts", "diff": "@@ -24,7 +24,7 @@ export class ConnectService {\n}\n}\nViewManager.createWebviewPanel({\n- path: \"app\", title: \"connect\",\n+ path: \"app\", title: connect...
TypeScript
MIT License
cweijan/vscode-database-client
split edit and connect.
141,908
18.06.2021 17:22:32
-28,800
e66310b2e3647ec46686c85838ba136838a28213
Split with remote and local.
[ { "change_type": "MODIFY", "old_path": "src/provider/treeDataProvider.ts", "new_path": "src/provider/treeDataProvider.ts", "diff": "@@ -19,7 +19,8 @@ export class DbTreeDataProvider implements vscode.TreeDataProvider<Node> {\npublic readonly onDidChangeTreeData: vscode.Event<Node> = this._onDidChang...
TypeScript
MIT License
cweijan/vscode-database-client
Split with remote and local.
141,908
19.06.2021 12:35:41
-28,800
40b7ac007e728dd9c62574b227f80400c449ed2f
Terminal don't get focus when input data.
[ { "change_type": "MODIFY", "old_path": "src/vue/xterm/index.vue", "new_path": "src/vue/xterm/index.vue", "diff": "this\n.on('connecting', content => {\nterminal.write(content)\n- terminal.focus()\n+ // terminal.focus()\n})\n.on('data', (content) => {\nterminal.write(content)\n- terminal.focus()\n+ /...
TypeScript
MIT License
cweijan/vscode-database-client
Terminal don't get focus when input data.
141,908
19.06.2021 14:21:46
-28,800
e58e2f6fd1857a71a1a7f39a8bce99ebb5071619
Add sqlite3 exists check.
[ { "change_type": "MODIFY", "old_path": "src/service/connect/connectService.ts", "new_path": "src/service/connect/connectService.ts", "diff": "-import { ConnectionNode } from \"../../model/database/connectionNode\";\n-import { DbTreeDataProvider } from \"../../provider/treeDataProvider\";\n+import { ...
TypeScript
MIT License
cweijan/vscode-database-client
Add sqlite3 exists check.
141,908
19.06.2021 17:04:25
-28,800
2b1b002d9443730a576e5e6645a308a6a422a12e
Support load data when over timeout.
[ { "change_type": "MODIFY", "old_path": "src/provider/treeDataProvider.ts", "new_path": "src/provider/treeDataProvider.ts", "diff": "@@ -39,15 +39,20 @@ export class DbTreeDataProvider implements vscode.TreeDataProvider<Node> {\nreturn;\n}\ntry {\n- const mark = setTimeout(() => {\n+ let mark = setTi...
TypeScript
MIT License
cweijan/vscode-database-client
Support load data when over timeout.
141,908
19.06.2021 17:09:36
-28,800
6917583de9b68e821664e499cd2c7ada70d1a62e
Fix ssh child load fail.
[ { "change_type": "MODIFY", "old_path": "src/service/ssh/clientManager.ts", "new_path": "src/service/ssh/clientManager.ts", "diff": "@@ -36,6 +36,7 @@ export class ClientManager {\n}\n}).on('error', (err) => {\n+ this.activeClient[key] = null\nvscode.window.showErrorMessage(err.message)\nreject(err)\...
TypeScript
MIT License
cweijan/vscode-database-client
Fix ssh child load fail.
141,908
19.06.2021 17:32:04
-28,800
53b8479a1ce64f61d9dab11b7bd03c576fee9f53
Better active database item.
[ { "change_type": "MODIFY", "old_path": "src/model/database/connectionNode.ts", "new_path": "src/model/database/connectionNode.ts", "diff": "@@ -114,7 +114,7 @@ export class ConnectionNode extends Node implements CopyAble {\npublic async newQuery() {\n- await FileManager.show(`${new Date().getTime()}...
TypeScript
MIT License
cweijan/vscode-database-client
Better active database item.
141,908
19.06.2021 17:36:42
-28,800
775fe74af1fd137a144f369cdc6d90508205d1a6
Remove sqlite desc from readme.
[ { "change_type": "MODIFY", "old_path": "README.md", "new_path": "README.md", "diff": "@@ -61,14 +61,6 @@ Click the history button to open the list of recently executed query history rec\n![history](images/history.jpg)\n-## Sqlite\n-\n-If you using Linux or MacOS that must install sqlite3 first.\n-\n...
TypeScript
MIT License
cweijan/vscode-database-client
Remove sqlite desc from readme.
141,908
19.06.2021 18:24:22
-28,800
503d3077118c0d8747ce9568e24f103e7f921c80
Init connecton config edit.
[ { "change_type": "MODIFY", "old_path": "package.json", "new_path": "package.json", "diff": "\"title\": \"%command.connection.edit%\",\n\"category\": \"MySQL\"\n},\n+ {\n+ \"command\": \"mysql.connection.config\",\n+ \"title\": \"%command.connection.config%\",\n+ \"icon\": \"$(gear)\",\n+ \"category\...
TypeScript
MIT License
cweijan/vscode-database-client
Init connecton config edit.
141,908
21.06.2021 10:50:34
-28,800
2bbced7a2ea449b6e02031e34abc491e01ee6037
Isolate the configuration of vscode and remote.
[ { "change_type": "ADD", "old_path": null, "new_path": "src/common/state.ts", "diff": "+import { Global } from \"./global\";\n+import * as vscode from \"vscode\";\n+\n+export class GlobalState {\n+ public static update(key: string, value: any): Thenable<void> {\n+ key = getKey(key)\n+ return Global.c...
TypeScript
MIT License
cweijan/vscode-database-client
Isolate the configuration of vscode and remote.
141,908
21.06.2021 11:15:06
-28,800
cf20cc6a62a6f1b12dfafbe559dcc952499d653c
Fix key gone.
[ { "change_type": "MODIFY", "old_path": "src/model/interface/node.ts", "new_path": "src/model/interface/node.ts", "diff": "@@ -141,7 +141,9 @@ export abstract class Node extends vscode.TreeItem implements CopyAble {\nif (this.disable) {\nthis.command = { command: \"mysql.connection.open\", title: \"O...
TypeScript
MIT License
cweijan/vscode-database-client
Fix key gone.
141,908
22.06.2021 09:53:36
-28,800
6d5f89dce381100317c7506e95cf372c63642481
Fix ssh terminal cannot search.
[ { "change_type": "MODIFY", "old_path": "package.json", "new_path": "package.json", "diff": "\"id\": \"github.cweijan.mysql\",\n\"name\": \"Database\"\n}\n-\n],\n\"github-cweijan-nosql\": [\n{\n\"xregexp\": \"2.0.0\",\n\"xterm\": \"^4.12.0\",\n\"xterm-addon-fit\": \"^0.5.0\",\n- \"xterm-addon-search\...
TypeScript
MIT License
cweijan/vscode-database-client
Fix ssh terminal cannot search.
141,908
22.06.2021 10:45:58
-28,800
66b8678594de43b4b4bbaad38cd3fd80d2f4859f
Fix mongo export data fail.
[ { "change_type": "MODIFY", "old_path": "src/extension.ts", "new_path": "src/extension.ts", "diff": "@@ -119,9 +119,10 @@ export function activate(context: vscode.ExtensionContext) {\nserviceManager.dumpService.generateDocument(node)\n},\n\"mysql.data.import\": (node: SchemaNode | ConnectionNode) => ...
TypeScript
MIT License
cweijan/vscode-database-client
Fix mongo export data fail.
141,908
22.06.2021 14:45:01
-28,800
994808c157c132b5abe6cb297098410f2dff6e09
Fix change connect target fail.
[ { "change_type": "MODIFY", "old_path": "src/provider/treeDataProvider.ts", "new_path": "src/provider/treeDataProvider.ts", "diff": "@@ -78,15 +78,19 @@ export class DbTreeDataProvider implements vscode.TreeDataProvider<Node> {\nconst isGlobal = (node as any).isGlobal;\nconst configNotChange = newKey...
TypeScript
MIT License
cweijan/vscode-database-client
Fix change connect target fail.
141,908
22.06.2021 17:39:09
-28,800
61296d0e7c6b27d3cbf6aade62b8187e405a9e6a
Enhance codelen detect.
[ { "change_type": "MODIFY", "old_path": "package.json", "new_path": "package.json", "diff": "\"es\"\n],\n\"configuration\": \"./syntaxes/es.configuration.json\"\n+ },{\n+ \"id\": \"sql\",\n+ \"extensions\": [ \".sql\", \".dsql\" ],\n+ \"aliases\": [ \"SQL\" ],\n+ \"configuration\": \"./syntaxes/langu...
TypeScript
MIT License
cweijan/vscode-database-client
Enhance codelen detect.
141,908
23.06.2021 10:07:16
-28,800
67d6825012719e782a37521c495ff3a6c7e8f357
Fix record history fail.
[ { "change_type": "MODIFY", "old_path": "src/model/nodeUtil.ts", "new_path": "src/model/nodeUtil.ts", "diff": "@@ -27,11 +27,7 @@ export abstract class NodeUtil {\nreturn NodeUtil.of( { ...nodes, parent: null, provider: null, context: null, command: null })\n}\nif (nodes instanceof Array) {\n- let te...
TypeScript
MIT License
cweijan/vscode-database-client
Fix record history fail.
141,908
23.06.2021 10:44:54
-28,800
8491c5318c260be9dfb48ec2e0c3118b2f06198d
Fix ssh connection cannot identify.
[ { "change_type": "MODIFY", "old_path": "src/model/interface/node.ts", "new_path": "src/model/interface/node.ts", "diff": "@@ -53,7 +53,7 @@ export abstract class Node extends vscode.TreeItem implements CopyAble {\npublic disable?: boolean;\n/**\n- * context\n+ * using to distingush connectHolder, ch...
TypeScript
MIT License
cweijan/vscode-database-client
Fix ssh connection cannot identify.
141,908
23.06.2021 20:21:09
-28,800
2b9855430c9cb117252193ac47824010089b8f90
Fix change active database not show pg and mssql.
[ { "change_type": "MODIFY", "old_path": "src/provider/treeDataProvider.ts", "new_path": "src/provider/treeDataProvider.ts", "diff": "@@ -175,7 +175,18 @@ export class DbTreeDataProvider implements vscode.TreeDataProvider<Node> {\ncontinue;\n}\n- const schemaList = DatabaseCache.getSchemaListOfConnect...
TypeScript
MIT License
cweijan/vscode-database-client
Fix change active database not show pg and mssql.
141,908
24.06.2021 10:37:25
-28,800
a1285d969ac43c8516256ffffe7e2f657ab56f18
Fix loading data when occur error.
[ { "change_type": "MODIFY", "old_path": "src/vue/result/App.vue", "new_path": "src/vue/result/App.vue", "diff": "@@ -161,6 +161,7 @@ export default {\nif (!data) return;\nconst response = data.content;\nconsole.log(data);\n+ this.result.transId=response.transId;\nthis.table.loading = false;\nswitch (...
TypeScript
MIT License
cweijan/vscode-database-client
Fix loading data when occur error.
141,908
24.06.2021 10:56:27
-28,800
244b0b522bc383a530b38aa4e385f63890125579
Init sql highlight.
[ { "change_type": "MODIFY", "old_path": "package.json", "new_path": "package.json", "diff": "\"default\": 100,\n\"description\": \"%config.defaultSelectLimit%\"\n},\n+ \"database-client.highlightSQLBlock\": {\n+ \"type\": \"boolean\",\n+ \"default\": false,\n+ \"description\": \"Highlight SQL Code bl...
TypeScript
MIT License
cweijan/vscode-database-client
Init sql highlight.
141,908
24.06.2021 11:36:28
-28,800
16e8a5373139428eb968e7a136c39e853a71fdae
Version 3.9.1.
[ { "change_type": "MODIFY", "old_path": "CHANGELOG.md", "new_path": "CHANGELOG.md", "diff": "# CHANGELOG\n+# 3.9.1 2021-6-24\n+\n+- Enhance sql detect.\n+- Update run query shortcut.\n+\n# 3.9.0 2021-6-22\n- Support edit connection config.\n" }, { "change_type": "MODIFY", "old_path": "pac...
TypeScript
MIT License
cweijan/vscode-database-client
Version 3.9.1.
141,908
24.06.2021 11:58:49
-28,800
07ab8bfdf55938179d88954c62b3a6fba5d05939
Fix query file content gone.
[ { "change_type": "MODIFY", "old_path": "src/model/database/catalogNode.ts", "new_path": "src/model/database/catalogNode.ts", "diff": "+import { FileModel } from \"@/common/filesManager\";\nimport { DbTreeDataProvider } from \"@/provider/treeDataProvider\";\nimport { DatabaseCache } from \"@/service/...
TypeScript
MIT License
cweijan/vscode-database-client
Fix query file content gone.
141,908
24.06.2021 14:53:06
-28,800
9051a2a7407158ab973e6efd31103021764b880b
Sql detect skip white space.
[ { "change_type": "MODIFY", "old_path": "src/provider/codelen/sqlCodeLensProvider.ts", "new_path": "src/provider/codelen/sqlCodeLensProvider.ts", "diff": "@@ -73,6 +73,7 @@ export class SqlCodeLensProvider implements vscode.CodeLensProvider {\n}\nif (!context.start) {\n+ if (ch.match(/\\s/)) continue...
TypeScript
MIT License
cweijan/vscode-database-client
Sql detect skip white space.
141,908
24.06.2021 14:58:43
-28,800
17e6b6ee2d1a44ccf5c736762ba5f2528c4f7642
Fix sql detect ignore string.
[ { "change_type": "MODIFY", "old_path": "src/provider/codelen/sqlCodeLensProvider.ts", "new_path": "src/provider/codelen/sqlCodeLensProvider.ts", "diff": "@@ -45,12 +45,11 @@ export class SqlCodeLensProvider implements vscode.CodeLensProvider {\n// string check\nif (ch == `'`) {\ncontext.inSingleQuot...
TypeScript
MIT License
cweijan/vscode-database-client
Fix sql detect ignore string.
141,908
24.06.2021 15:05:25
-28,800
53546c8c8c807985b8967f9cfc9647facb2f6a46
Add outline provider.
[ { "change_type": "ADD", "old_path": null, "new_path": "src/provider/sqlSymbolProvide.ts", "diff": "+import * as vscode from 'vscode';\n+import { SqlCodeLensProvider } from './codelen/sqlCodeLensProvider';\n+\n+export class SQLSymbolProvide implements vscode.DocumentSymbolProvider {\n+\n+ constructor...
TypeScript
MIT License
cweijan/vscode-database-client
Add outline provider.
141,908
24.06.2021 15:19:05
-28,800
4a7e2b781d007a70d8970dc39020af3c8c1e4218
Fix pagesize not correct.
[ { "change_type": "MODIFY", "old_path": "src/service/result/query.ts", "new_path": "src/service/result/query.ts", "diff": "@@ -112,7 +112,9 @@ export class QueryPage {\n} else {\nawait this.loadColumnList(queryParam);\n}\n- ((queryParam.res)as DataResponse).pageSize=ServiceManager.getPageService(quer...
TypeScript
MIT License
cweijan/vscode-database-client
Fix pagesize not correct.
141,908
24.06.2021 15:43:20
-28,800
5dc0706b08821ef14b904925b5f35fa93813f826
Fix sql detect ignore line break.
[ { "change_type": "MODIFY", "old_path": "src/service/queryUnit.ts", "new_path": "src/service/queryUnit.ts", "diff": "@@ -50,6 +50,10 @@ export class QueryUnit {\nsql = this.getSqlFromEditor(connectionNode, queryOption.runAll);\nqueryOption.recordHistory = true;\n}\n+ if(!sql){\n+ vscode.window.showEr...
TypeScript
MIT License
cweijan/vscode-database-client
Fix sql detect ignore line break.
141,908
28.06.2021 20:13:53
-28,800
19f4e4cafa30ca7cc8c29d2f22cdc4d2e1cfc535
Add more wrapper keywords.
[ { "change_type": "MODIFY", "old_path": "src/common/wrapper.js", "new_path": "src/common/wrapper.js", "diff": "@@ -7,14 +7,14 @@ export function wrapByDb(origin, databaseType) {\nif (databaseType == 'PostgreSQL') {\nreturn origin.split(\".\").map(text => `\"${text}\"`).join(\".\")\n}\n+ if (databaseT...
TypeScript
MIT License
cweijan/vscode-database-client
Add more wrapper keywords.
141,908
28.06.2021 20:14:29
-28,800
94539152804ceadf2ef3aa132b8f48367fa52a92
Remove legacy text from sql.
[ { "change_type": "MODIFY", "old_path": "src/service/queryUnit.ts", "new_path": "src/service/queryUnit.ts", "diff": "@@ -151,7 +151,7 @@ export class QueryUnit {\nreturn ServiceManager.instance.codeLenProvider.parseCodeLensEnhance(editor.document, editor.selection.active) as string;\n}\n- public stat...
TypeScript
MIT License
cweijan/vscode-database-client
Remove legacy text from sql.
141,908
28.06.2021 20:42:55
-28,800
6accf6e9aedfe382f7b0a1471d4e2a8d5dc4c86b
Support load data local file.
[ { "change_type": "MODIFY", "old_path": "src/service/connect/mysqlConnection.ts", "new_path": "src/service/connect/mysqlConnection.ts", "diff": "@@ -38,7 +38,7 @@ export class MysqlConnection extends IConnection {\nquery(sql: string, callback?: queryCallback): void;\nquery(sql: string, values: any, c...
TypeScript
MIT License
cweijan/vscode-database-client
Support load data local file.
141,908
29.06.2021 18:26:05
-28,800
2204eb1de9fa4a3b06e7fb354a8bc1650453b661
Init tokens.
[ { "change_type": "MODIFY", "old_path": "src/provider/parser/sqlBlcok.ts", "new_path": "src/provider/parser/sqlBlcok.ts", "diff": "@@ -3,4 +3,11 @@ import { Range } from \"vscode\";\nexport class SQLBlock {\nsql: string;\nrange: Range;\n+ tokens: SQLToken[];\n+}\n+\n+export class SQLToken{\n+ content...
TypeScript
MIT License
cweijan/vscode-database-client
Init tokens.
141,908
29.06.2021 21:34:27
-28,800
1ec87ba0e428d54e7efc73a2d06594114ab8d5ff
Redesign auto complete.
[ { "change_type": "ADD", "old_path": null, "new_path": "src/provider/complete/chain/baseChain.ts", "diff": "+import { CompletionItem, CompletionItemKind } from \"vscode\";\n+import { ComplectionChain, ComplectionContext } from \"../complectionContext\";\n+\n+export abstract class BaseChain implements...
TypeScript
MIT License
cweijan/vscode-database-client
Redesign auto complete.
141,908
29.06.2021 21:49:08
-28,800
b7106858c37db1c4bdbc8ab9cd03701a5a8cb934
Reduce typekey chain.
[ { "change_type": "MODIFY", "old_path": "src/provider/complete/chain/baseChain.ts", "new_path": "src/provider/complete/chain/baseChain.ts", "diff": "@@ -3,7 +3,7 @@ import { ComplectionChain, ComplectionContext } from \"../complectionContext\";\nexport abstract class BaseChain implements ComplectionC...
TypeScript
MIT License
cweijan/vscode-database-client
Reduce typekey chain.
141,908
29.06.2021 21:57:39
-28,800
2e9ff5d684be6fd622538121258d65159a0cd6fa
Update schema detect rule.
[ { "change_type": "MODIFY", "old_path": "src/provider/complete/chain/schemaChain.ts", "new_path": "src/provider/complete/chain/schemaChain.ts", "diff": "@@ -3,19 +3,22 @@ import { SchemaNode } from \"@/model/database/schemaNode\";\nimport * as vscode from \"vscode\";\nimport { UserGroup } from \"../....
TypeScript
MIT License
cweijan/vscode-database-client
Update schema detect rule.
141,908
29.06.2021 22:20:49
-28,800
611d71b67bec640b8abf77102469c9c71ec027fb
Redsign token detect.
[ { "change_type": "MODIFY", "old_path": "src/provider/parser/sqlBlcok.ts", "new_path": "src/provider/parser/sqlBlcok.ts", "diff": "-import { Range } from \"vscode\";\n+import { Position, Range } from \"vscode\";\nexport class SQLBlock {\nsql: string;\n" }, { "change_type": "MODIFY", "old_...
TypeScript
MIT License
cweijan/vscode-database-client
Redsign token detect.
141,908
30.06.2021 09:33:04
-28,800
4b0208b1420039d00ac342840e59013c2030b181
Support detect table token.
[ { "change_type": "MODIFY", "old_path": "src/provider/parser/sqlParser.ts", "new_path": "src/provider/parser/sqlParser.ts", "diff": "@@ -74,8 +74,10 @@ export class SQLParser {\n}\ncontext.sql = context.sql + ch;\n}\n- if (context.sql)\n+ if (context.sql){\ncontext.sql = context.sql + '\\n';\n+ token...
TypeScript
MIT License
cweijan/vscode-database-client
Support detect table token.
141,908
30.06.2021 10:22:40
-28,800
b25353849e734d09223fbf2a1f786ae40627c9b7
Support detect subquery.
[ { "change_type": "MODIFY", "old_path": "src/provider/parser/sqlBlcok.ts", "new_path": "src/provider/parser/sqlBlcok.ts", "diff": "@@ -4,6 +4,7 @@ export class SQLBlock {\nsql: string;\nrange: Range;\ntokens: SQLToken[];\n+ scopes: Range[] = [];\n}\nexport class SQLToken {\n" }, { "change_typ...
TypeScript
MIT License
cweijan/vscode-database-client
Support detect subquery.
141,908
30.06.2021 10:36:06
-28,800
4eed994ade83a1b0d95bad0d8b4f971c7d071509
Enhance ddl detect.
[ { "change_type": "MODIFY", "old_path": "src/provider/complete/chain/ddlChain.ts", "new_path": "src/provider/complete/chain/ddlChain.ts", "diff": "+import { ModelType } from \"@/common/constants\";\nimport * as vscode from \"vscode\";\nimport { CompletionItem } from \"vscode\";\nimport { ComplectionC...
TypeScript
MIT License
cweijan/vscode-database-client
Enhance ddl detect.
141,908
30.06.2021 16:07:30
-28,800
489f063b6f0e91059a46ab858ba501dbc820520d
Enhance DML detect.
[ { "change_type": "MODIFY", "old_path": "src/provider/complete/chain/baseChain.ts", "new_path": "src/provider/complete/chain/baseChain.ts", "diff": "import { Node } from \"@/model/interface/node\";\n-import { CompletionItem, CompletionItemKind } from \"vscode\";\n+import { CompletionItem, CompletionI...
TypeScript
MIT License
cweijan/vscode-database-client
Enhance DML detect.
141,908
02.07.2021 17:18:09
-28,800
ca5d7fcca33e8d88ff23ccb1beaebd68eb2d35c5
Version 3.9.3.
[ { "change_type": "MODIFY", "old_path": "CHANGELOG.md", "new_path": "CHANGELOG.md", "diff": "# CHANGELOG\n+# 3.9.3 2021-7-2\n+\n+- Better sql complection.\n+- Fix multi line space ignored.\n+\n# 3.9.2 2021-6-24\n- Enhance sql detect.\n" }, { "change_type": "MODIFY", "old_path": "package.j...
TypeScript
MIT License
cweijan/vscode-database-client
Version 3.9.3.
141,908
04.07.2021 20:03:36
-28,800
f481e83d831f99004abb2b9af95b13caba6447ea
Version 3.9.4.
[ { "change_type": "MODIFY", "old_path": "package.json", "new_path": "package.json", "diff": "\"name\": \"vscode-mysql-client2\",\n\"displayName\": \"MySQL\",\n\"description\": \"Database Client for vscode\",\n- \"version\": \"3.9.3\",\n+ \"version\": \"3.9.4\",\n\"publisher\": \"cweijan\",\n\"icon\":...
TypeScript
MIT License
cweijan/vscode-database-client
Version 3.9.4.
141,908
06.07.2021 20:20:41
-28,800
c6fda77b5ff3e062c075af53960c8cf80f9ae556
Support copy on ssh terminal.
[ { "change_type": "MODIFY", "old_path": "src/vue/xterm/index.vue", "new_path": "src/vue/xterm/index.vue", "diff": "const container = document.getElementById('terminal-container');\nterminal.onKey(async e => {\nconst event = e.domEvent;\n- if ((event.code == \"KeyC\" && event.ctrlKey && !event.altKey ...
TypeScript
MIT License
cweijan/vscode-database-client
Support copy on ssh terminal.
141,908
06.07.2021 21:11:00
-28,800
16a14a5cadd8679f31afd002b03a9b90dba83c78
Fix elastic search using ssh tunnel fail
[ { "change_type": "MODIFY", "old_path": "src/service/connect/esConnection.ts", "new_path": "src/service/connect/esConnection.ts", "diff": "@@ -12,7 +12,7 @@ export class EsConnection extends IConnection {\nconstructor(private opt: Node) {\nsuper()\nif (compareVersions(extPackage.version, '3.6.6') ===...
TypeScript
MIT License
cweijan/vscode-database-client
Fix elastic search using ssh tunnel fail #243.
141,908
08.07.2021 20:35:56
-28,800
b63a744e118d0349d71a08ce646607aa91805e97
Support dump with mysqldump
[ { "change_type": "MODIFY", "old_path": "src/common/util.ts", "new_path": "src/common/util.ts", "diff": "@@ -3,10 +3,11 @@ import { join } from \"path\";\nimport * as vscode from \"vscode\";\nimport { Position, TextDocument } from \"vscode\";\nimport { Confirm, Constants, DatabaseType } from \"./cons...
TypeScript
MIT License
cweijan/vscode-database-client
Support dump with mysqldump