Version bump
This commit is contained in:
@@ -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