Row limit

This commit is contained in:
Thorsten Muerell
2017-11-01 22:51:05 +01:00
parent 501987f199
commit 26c0df18cb
2 changed files with 2 additions and 1 deletions

Binary file not shown.

View File

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