Field |
Field Type |
Null |
Notes |
Description |
CAPTION |
nvarchar(100) |
|
Default = '' |
|
DATATYPECODE |
tinyint |
|
Default = 3 |
0=Boolean, 1=Decimal, 2=Integer, 3=String |
DATATYPE |
nvarchar(7) (Computed) |
 |
CASE [DATATYPECODE] WHEN 0 THEN N'Boolean' WHEN 1 THEN N'Decimal' WHEN 2 THEN N'Integer' WHEN 3 THEN N'String' END |
Provides a translation for the 'DATATYPECODE' field. |
DATEADDED |
datetime |
|
Default = getdate() |
Indicates the date this record was added. |
DATECHANGED |
datetime |
|
Default = getdate() |
Indicates the date this record was last changed. |
TS |
timestamp |
|
|
Timestamp. |
TSLONG |
bigint (Computed) |
 |
CONVERT(bigint, TS) |
Numeric representation of the timestamp. |