sql-parser
Thorsten Muerell 7 years ago
parent 501987f199
commit 26c0df18cb

Binary file not shown.

@ -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...)";
}); });

Loading…
Cancel
Save