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 The primary key containing the id of the component.

jar_id A field containing the ID of the jar file. This field also references the SYSJAR system table.

component_name The name of the component.

component_type The type of the component.

create_time The field containing the creation time of the component.

contents The byte code of the jar file.

remarks A comment string.