Added db output.

This commit is contained in:
Thorsten Muerell
2017-11-01 10:55:31 +01:00
parent 10de1d4279
commit 31a47bb22f
2 changed files with 3 additions and 0 deletions

Binary file not shown.

View File

@@ -75,6 +75,9 @@ export function activate(context: vscode.ExtensionContext) {
let cd = json['columnDefinitions'] let cd = json['columnDefinitions']
if (!json['rows']) { if (!json['rows']) {
if ('dbOutput' in json) {
myOutputChannel.append(json['dbOutput'].map((x) => `DB: ${x}\n`).join(''));
}
if (json['userErrors']) { if (json['userErrors']) {
myOutputChannel.append("Errors found:\n"); myOutputChannel.append("Errors found:\n");