修改文档

This commit is contained in:
springrain
2024-04-18 22:25:26 +08:00
parent 995552eeed
commit c9f28456c1
2 changed files with 2 additions and 3 deletions

View File

@@ -122,7 +122,7 @@ Use odbc driver for the time being, ```DriverName:odbc ,Dialect:gbase```
- Since the TDengine driver does not support transactions, you need to set this setting ```DisableTransaction=true```
- Configure zorm.DataSourceConfig ```DriverName:taosSql/taosRestful, Dialect:tdengine```
- zorm.DataSourceConfig```TDengineInsertsColumnName```TDengine batch insert statement whether there is a column name. The default false has no column name, and the insertion value and database column order are consistent, reducing the length of the statement
- Test case: https://www.yuque.com/u27016943/nrgi00/dnru3f
- Test case: https://zorm.cn/post/zorm_tdengine_3.0_test
- TDengine is included: https://github.com/taosdata/awesome-tdengine/#orm
## Database scripts and entity classes

View File

@@ -39,7 +39,6 @@ zorm对国产数据库的适配不遗余力,遇到没有适配或者有问题的
- 配置zorm.DataSourceConfig的 ```DriverName:dm ,Dialect:dm```
- 达梦数据库驱动: gitee.com/chunanyong/dm
- 达梦的TEXT类型会映射为dm.DmClob,string不能接收,需要实现zorm.ICustomDriverValueConver接口,自定义扩展处理
- 达梦开启等保参数 COMM_ENCRYPT_NAME = AES128_ECB , 会导致驱动连接异常
```go
import (
// 00.引入数据库驱动
@@ -124,7 +123,7 @@ func init() {
- 因TDengine驱动不支持事务,需要设置```DisableTransaction=true```
- 配置zorm.DataSourceConfig的 ```DriverName:taosSql或者taosRestful, Dialect:tdengine```
- zorm.DataSourceConfig的```TDengineInsertsColumnName ```TDengine批量insert语句中是否有列名.默认false没有列名,插入值和数据库列顺序保持一致,减少语句长度
- 测试用例: https://www.yuque.com/u27016943/nrgi00/dnru3f
- 测试用例: https://zorm.cn/post/zorm_tdengine_3.0_test
- TDengine已收录: https://github.com/taosdata/awesome-tdengine/#orm
## 数据库脚本和实体类