🐛 fix(sql-editor): 修复结果消息展示与数据目录迁移稳定性

This commit is contained in:
Syngnat
2026-06-04 07:09:42 +08:00
parent 23ac30086f
commit f5166ac3fc
21 changed files with 1608 additions and 153 deletions

View File

@@ -806,6 +806,7 @@ export namespace connection {
message: string;
data: any;
fields?: string[];
messages?: string[];
queryId?: string;
static createFrom(source: any = {}) {
@@ -818,6 +819,7 @@ export namespace connection {
this.message = source["message"];
this.data = source["data"];
this.fields = source["fields"];
this.messages = source["messages"];
this.queryId = source["queryId"];
}
}