Table of Contents

TFieldTypeEquivalence Record

Maps a field type that is not natively supported by a database engine to an equivalent supported type, including the size, precision, and scale to use for that replacement type.

Syntax

Unit: Aurelius.Sql.Interfaces

TFieldTypeEquivalence = record;

Fields

Name Description
EquivalentLenth The maximum length (in characters or bytes) to declare for the equivalent column type.
EquivalentPrecision The total number of significant digits to declare for the equivalent numeric column type.
EquivalentScale The number of digits to the right of the decimal point to declare for the equivalent numeric column type.
EquivalentType The field type to use instead when the target database does not support NotSupportedType.
NotSupportedType The field type that is not supported by the target database engine.