We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 295e08d + 2c1d5c9 commit 061b61dCopy full SHA for 061b61d
src/notebooks/Controller.ts
@@ -87,6 +87,10 @@ export class IBMiController {
87
const results = await query.run();
88
89
const table = results.data;
90
+ if (table === undefined && results.success && !results.has_results) {
91
+ items.push(vscode.NotebookCellOutputItem.text(`Statement executed successfully. ${results.update_count ? `${results.update_count} rows affected.` : ``}`, `text/markdown`));
92
+ break;
93
+ }
94
95
if (table.length > 0) {
96
0 commit comments