1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2026-05-05 13:11:36 +00:00

SQL Console: Add number of rows returned

This commit is contained in:
Jeremy Ruston
2023-10-30 10:03:14 +00:00
parent d98265868e
commit 8c1f7a6928

View File

@@ -77,6 +77,10 @@ $tw.SqlConsole.prototype.runQuery = function() {
"class": "sql-console-output-input",
text: sql
}),
dm("div",{
"class": "sql-console-output-count",
text: "" + resultRows.length
}),
dm("div",{
"class": "sql-console-output-output",
text: exception || JSON.stringify(resultRows)