• H
    [TD-3204]<fix>: support usigned integer types for C# connector (#5808) · 8713f96d
    Huo Linhe 提交于
    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.
    8713f96d
TDengineDriver.cs 6.5 KB