优化:1、增加左侧菜单收缩按钮

2、meta 预览默认选中历史查看
     3、数据查询tinyint转short
This commit is contained in:
2024-04-05 20:13:40 +08:00
parent 36a30ba2b3
commit 8bdedd7370
6 changed files with 85 additions and 23 deletions

View File

@@ -122,6 +122,9 @@ public class DbSourceMysql implements DbSource {
case "DATE" -> {
row.put(columnLabel, rs.getDate(i));
}
case "BIT" -> {
row.put(columnLabel, rs.getShort(i));
}
default -> {
row.put(columnLabel, rs.getObject(i));
}