The types of field that a ResultsStore can contain.

Namespace:  RedGate.SQLDataCompare.Engine.ResultsStore
Assembly:  RedGate.SQLDataCompare.Engine (in RedGate.SQLDataCompare.Engine.dll)

Syntax

Visual Basic (Declaration)
Public Enumeration FieldType
C#
public enum FieldType
Visual C++
public enum class FieldType

Members

Member nameDescription
Empty
Not used.
Integer8
8-bit signed integer.
Integer16
16-bit signed integer.
Integer32
32-bit signed integer.
Integer64
64-bit signed integer.
Byte
8-bit unsigned integer.
UInteger16
16-bit unsigned integer.
UInteger32
32-bit unsigned integer.
UInteger64
64-bit unsigned integer.
Single
Single-precision, 32-bit number.
Boolean
Boolean, True/False value.
String
String or XML.
Double
Double-precision, 64-bit number.
Date
Date and time.
Binary
Binary data.
Decimal
High-precision, decimal number suitable for financial information.
Object
An object.
Clr
A CLR type.
SortByte
An byte for sorting by type (cannot be compared).
Guid
A GUID/unique identifier.

See Also