SYSJARCOMPONENT system table

CREATE TABLE SYS.SYSJARCOMPONENT(
	component_id INT NOT NULL,
	jar_id INT,
	component_name LONG VARCHAR,
	component_type CHAR(1),
	create_time TIMESTAMP NOT NULL,
	contents LONG BINARY,
	remarks LONG VARCHAR,
	PRIMARY KEY ( component_id ),
	FOREIGN KEY REFERENCES SYS.SYSJAR
)

component_id Primary key containing the ID of the component.

jar_id Field containing the ID of the JAR file. This field also references the SYSJAR system table.

component_name Name of the component.

component_type Type of the component.

create_time Field containing the creation time of the component.

contents Byte code of the JAR file.

remarks A comment string.