[TD-3204]<fix>: support usigned integer types for C# connector (#5808)
Added unsigned integer types and change taosdemo insert and select queries for these types. taos define | taos sql | c# --- | --- | --- UTINYINT | TINYINT UNSIGNED | `byte` USMALLINT | SMALLINT UNSIGNED | `ushort` UINT | INT UNSIGNED | `uint` UBIGINT | BIGINT UNSIGNED | `ulong` TINYINT | TINYINT | `sbyte` Note: also change the tinyint value type to C# `sbyte`(the right signed one byte type) in this pr.
Showing
想要评论请 注册 或 登录