Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ IsUnsignedSql()

static bool System.Data.ExpressionNode.IsUnsignedSql ( StorageType type)
inlinestaticpackageinherited

Definition at line 109 of file ExpressionNode.cs.

110 {
111 if (type != StorageType.UInt16 && type != StorageType.UInt32 && type != StorageType.UInt64 && type != StorageType.SqlByte)
112 {
113 return type == StorageType.Byte;
114 }
115 return true;
116 }

References System.type.

Referenced by System.Data.BinaryNode.IsMixedSql(), and System.Data.BinaryNode.ResultSqlType().