SqlDecimal Structure
Assembly: System.Data (in system.data.dll)
'Declaration <SerializableAttribute> _ Public Structure SqlDecimal Implements INullable, IComparable, IXmlSerializable 'Usage Dim instance As SqlDecimal
/** @attribute SerializableAttribute() */ public final class SqlDecimal extends ValueType implements INullable, IComparable, IXmlSerializable
JScript suports the use of structures, but not the declaration of new ones.
SqlDecimal has different underlying data structures from its corresponding .NET Framework Decimal data type. Decimal has no concept of precision. It uses 3 bytes to store the actual data, and therefore has a maximum scale of 28. The data range is -79,228,162,514,264,337,593,543,950,335 through 79,228,162,514,264,337,593,543,950,335. SqlDecimal has both precision and scale. It uses 4 unsigned 4-byte integers to store the actual data, and therefore has maximum precision and scale of 38. The data range is - 10^38 +1 through 10^38 - 1.
Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.