|
|
@ -141,7 +141,8 @@ export function activate(context: vscode.ExtensionContext) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
myOutputChannel.append("-- " + new Date() + " -------------------------------\n"); //Executing: '" + text + "'\n");
|
|
|
|
myOutputChannel.append("-- " + new Date() + " -------------------------------\n"); //Executing: '" + text + "'\n");
|
|
|
|
dbSession.stdin.write(text + "\n--- END ---\n");
|
|
|
|
let input = { "sql": text, "rowLimit": 30 };
|
|
|
|
|
|
|
|
dbSession.stdin.write(JSON.stringify(input) + "\n--- END ---\n");
|
|
|
|
statusBarItem.text = currentConnection.name + " (Connected, Query running...)";
|
|
|
|
statusBarItem.text = currentConnection.name + " (Connected, Query running...)";
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|