Added db output.

sql-parser
Thorsten Muerell 7 years ago
parent 10de1d4279
commit 31a47bb22f

Binary file not shown.

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

Loading…
Cancel
Save