SYSJAR system table

CREATE TABLE SYS.SYSJAR(
	jar_id INTEGER NOT NULL,
	creator UNSIGNED INT NOT NULL,
	jar_name LONG VARCHAR NOT NULL,
	jar_file LONG VARCHAR,
	create_time TIMESTAMP NOT NULL,
	update_time TIMESTAMP NOT NULL,
	remarks LONG VARCHAR,
	PRIMARY KEY ( jar_id )
)

jar_id A field containing the ID of the JAR file.

creator This user number identifies the creator of the JAR file. The name of the user can be found by looking in SYSUSERPERM.

jar_name Name of the JAR file.

jar_file File name of the JAR file.

create_time Time the JAR file was created.

update_time Time the JAR file was last updated.

remarks A comment string.