Version bump
This commit is contained in:
@@ -1,6 +1,11 @@
|
||||
# Change Log
|
||||
|
||||
All notable changes to the "frog" extension will be documented in this file.
|
||||
|
||||
## 0.0.19
|
||||
|
||||
- Maintenance release
|
||||
|
||||
## 0.0.18
|
||||
|
||||
- Fixed bug with endless loop
|
||||
|
@@ -2,7 +2,7 @@
|
||||
"name": "frog",
|
||||
"displayName": "Frog",
|
||||
"description": "The Oracle SQL workbench for VSCode",
|
||||
"version": "0.0.18",
|
||||
"version": "0.0.19",
|
||||
"publisher": "tmuerell",
|
||||
"engines": {
|
||||
"vscode": "^1.17.0"
|
||||
|
@@ -117,7 +117,7 @@ export class SessionManager {
|
||||
}
|
||||
|
||||
this.diagnosticCollection.set(document.uri, diagnostics);
|
||||
this.outputChannel.append("-- " + new Date() + " -------------------------------\n");
|
||||
this.outputChannel.append("-- end@" + this.currentConnection.name + " " + new Date() + " -------------------------------\n");
|
||||
outputBuffer = "";
|
||||
this.statusBarItem.text = this.currentConnection.name + " (Connected)";
|
||||
} catch (e) {
|
||||
@@ -142,7 +142,7 @@ export class SessionManager {
|
||||
public execute(text : string, rowLimit : number) {
|
||||
if (!this.check()) return;
|
||||
|
||||
this.outputChannel.append("-- " + new Date() + " -------------------------------\n"); //Executing: '" + text + "'\n");
|
||||
this.outputChannel.append("-- begin@" + this.currentConnection.name + " " + new Date() + " -------------------------------\n");
|
||||
let input = { "sql": text, "rowLimit": rowLimit };
|
||||
this.dbSession.stdin.write(JSON.stringify(input) + "\n--- END ---\n");
|
||||
this.statusBarItem.text = this.currentConnection.name + " (Connected, Query running...)";
|
||||
|
Reference in New Issue
Block a user