Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.

SQL Anywhere 10.0.1 » SQL Anywhere Server - SQL Reference » Views » System views in Sybase Central

SYSJAR system view Next Page

SYSJARCOMPONENT system view


Each row in the SYSJAR system view defines a JAR file component. The underlying system table for this view is ISYSJARCOMPONENT.

Columns
Column name Column type Column constraint
component_id INTEGER NOT NULL
jar_id INTEGER
component_name LONG VARCHAR
component_type CHAR(1)
contents LONG BINARY

component_id    The primary key containing the id of the component.

jar_id    A field containing the ID number of the JAR.

component_name    The name of the component.

component_type    The type of the component.

contents    The byte code of the JAR file.

Constraints on underlying system table

PRIMARY KEY (component_id)

FOREIGN KEY (jar_id) references SYS.ISYSJAR (jar_id)

See also