Icon DataTypes Table

Structure
CREATE TABLE "DataTypes"
(
"Name" VARCHAR(40) COLLATE "ANSI_CI",
"Description" CLOB COLLATE "ANSI",
"BinarySize" INTEGER
)

CREATE INDEX "Name" ON "DataTypes"
("Name")

Description
This table contains the ElevateDB data types. The data types in ElevateDB are fixed and user-defined data types are not permitted. See the Types topic for more information on the available data types in ElevateDB.

Related DDL Statements
StatementDescription
None
Image