Icon Modules Table

Structure
CREATE TABLE "Modules"
(
"Name" VARCHAR(40) COLLATE "ANSI_CI",
"Description" CLOB COLLATE "ANSI",
"FilePath" VARCHAR(255) COLLATE "ANSI_CI",
"FileVersion" VARCHAR(15) COLLATE "ANSI_CI",
"FileDescription" CLOB COLLATE "ANSI",
"Type" VARCHAR(30) COLLATE "ANSI_CI",
"CharacterSet" VARCHAR(30) COLLATE "ANSI_CI",
"CreateSQL" CLOB COLLATE "ANSI_CI",
"DropSQL" CLOB COLLATE "ANSI_CI"
)

CREATE INDEX "Name" ON "Modules"
("Name")

Description
This table contains all of the defined external modules in an ElevateDB configuration. These external modules consist of the compiled implementation of text filters, word generators, migrators, or modules used for stored functions or procedures.

The Type column indicates the purpose of the module.

The CharacterSet column represents the character set used by the module, and the values are as follows:

Character SetDescription
ANSIThe module uses the ANSI character set
UnicodeThe module uses the Unicode character set

You can find out more information on how to create such external modules for ElevateDB in your product-specific manual.

Related DDL Statements
StatementDescription
CREATE MODULECreates (registers) a new external module
ALTER MODULEAlters an existing external module
DROP MODULEDrops an existing external module
RENAME MODULERenames an existing external module
Image