t_RelationalTable_Columns_Column
Column : Database Table
A database column definition.
Description Provides the logical name, type, and other properties for a column definition. Properties
allocation : columnAllocationColumn allocation mode. If a given mode is not supported on a given RDMBS, it is degraded automatically.
Valid values based on“string”. fixed varying locator caseInsensitive : booleanApplicable to string columns only. True if the column is case insensitive for searching. (default = true)
It can be automatically set to false if the column participates in primary or foreign keys, is a class code or is longer than 2000 characters.converter : stringComponent for custom column data type conversion, implementing the Converter interface.
description : stringColumn description.
literal : booleanTrue to disable the bind parameter on this column and use a literal bind instead.
name : dbObjNameUniquely identifies the column.
Valid values based on“string”. [A-Za-z][_A-Za-z\d]* nullable : booleanTrue if the column is nullable. It can be automatically set to false based on required mapped attributes and column participation in the primary key.
precision : positiveIntColumn precision (decimal, integer) or length (string, binary). For integer columns, it is the number of bytes (1, 2 or 4).
Valid values based on“int”. 1 (minInclusive) scale : unsignedByteDecimal number scale.
type : columnTypeColumn data type.
Valid values based on“string”. string binary integer long decimal float double timestamp boolean
Parents
t_RelationalTable_Columns - The set of columns for the table.
Parent topic: t_RelationalTable_Columns