feat(docs): 完善达梦数据库支持文档

- 更新 .gitignore 文件,添加对 .sql 文件的忽略
- 移除 cache_db.go 中的调试日志相关代码,简化缓存操作逻辑
- 在多个文档中添加达梦 DM8 数据库的支持信息,包括配置、使用注意事项及示例
- 更新 QUICKSTART.md,明确支持的数据库类型及配置示例
- 在 ROADMAP.md 中记录达梦数据库完整支持的进展
This commit is contained in:
2026-03-20 11:25:09 +08:00
parent 7f7b585ffb
commit 6fda351585
11 changed files with 823 additions and 133 deletions
+1 -1
View File
@@ -27,7 +27,7 @@ var MysqlCtr = Ctr{
return
}
columns := that.Db.Query("DESCRIBE " + tableName)
data := that.Db.Select(tableName, Map{"LIMIT": 10})
data := that.Db.Select(tableName, "*", Map{"LIMIT": 10})
that.Display(0, Map{"table": tableName, "columns": columns, "sample_data": data})
},