Skip to content

Commit 88ac015

Browse files
authored
docs(dotnet): dotnet connector supports blob data type (#35148)
1 parent a86f629 commit 88ac015

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

docs/en/14-reference/05-connector/40-csharp.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,11 +72,13 @@ For error code information please refer to [Error Codes](../09-error-code.md)
7272
| JSON | byte[] |
7373
| VARBINARY | byte[] |
7474
| GEOMETRY | byte[] |
75+
| BLOB | byte[] |
7576
| DECIMAL | decimal |
7677

7778
**Note**:
7879

7980
- JSON type is only supported in tags.
81+
- BLOB type is not supported as a tag column and does not support stmt parameterized query binding.
8082
- The GEOMETRY type is binary data in little endian byte order, conforming to the WKB standard. For more details, please refer to [Data Types](../03-taos-sql/01-datatype.md)
8183
For WKB standard, please refer to [Well-Known Binary (WKB)](https://libgeos.org/specifications/wkb/)
8284
- The DECIMAL type in C# is represented using the `decimal` type, which supports high-precision decimal numbers.

docs/zh/14-reference/05-connector/40-csharp.mdx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,11 +71,13 @@ TDengine TSDB 其他功能模块的报错,请参考 [错误码](../../../refer
7171
| JSON | byte[] |
7272
| VARBINARY | byte[] |
7373
| GEOMETRY | byte[] |
74+
| BLOB | byte[] |
7475
| DECIMAL | decimal |
7576

7677
**注意**
7778

7879
- JSON 类型仅在 tag 中支持。
80+
- BLOB 类型不支持作为 tag 列,不支持 stmt 参数化查询绑定。
7981
- GEOMETRY 类型是 little endian 字节序的二进制数据,符合 WKB 规范。详细信息请参考 [数据类型](../../taos-sql/datatype)
8082
WKB 规范请参考 [Well-Known Binary (WKB)](https://libgeos.org/specifications/wkb/)
8183
- DECIMAL 类型在 C# 中使用 `decimal` 类型表示,支持高精度的十进制数值。因为 C# 的 `decimal` 类型与 TDengine TSDB 的 DECIMAL 类型在精度和范围上有所不同,

0 commit comments

Comments
 (0)