Glossary

This glossary describes Java and Java-SQL terms used in this book. For a description of Adaptive Server and SQL terms, refer to the Adaptive Server Glossary.

assignment

A generic term for the data transfers specified by select, fetch, insert, and update Transact-SQL commands. An assignment sets a source value into a target data item.

associated JAR

If a class/JAR is installed with installjava and the -jar option, then the JAR is retained in the database and the class is linked in the database with the associated JAR. See retained JAR .

bytecode

The compiled form of Java source code that is executed by the Java VM.

class

A class is the basic element of Java programs, containing a set of field declarations and methods. A class is the master copy that determines the behavior and attributes of each instance of that class. class definition is the definition of an active data type, that specifies a legal set of values and defines a set of methods that handle the values. See class instance.

class method

See static method.

class file

A file of type “class” (for example, myclass.class) that contains the compiled bytecode for a Java class. See Java file and Java archive (JAR) .

class instance

Value of the class data type that contains a value for each field of the class and that accepts all methods of the class.

datatype mapping

Conversions between Java and SQL datatypes.

declared class

The declared datatype of a Java-SQL data item. It is either the datatype of the runtime value or a supertype of it.

externalization

An externalization of a Java instance is a byte stream that contains sufficient information for the class to reconstruct the instance. Externalization is defined by the externalizable interface. All Java-SQL classes must be either externalizable or serializable. See serialization.

installed classes

Java classes and methods that have been placed in the Adaptive Server system by the installjava utility.

instance method

A invoked method that references a specific instance of a class.

interface

A named collection of method declarations. A class can implement an interface if the class defines all methods declared in the interface.

Java archive (JAR)

A platform-independent format for collecting classes in a single file.

Java Database Connectivity (JDBC)

A Java-SQL API that is a standard part of the Java Class Libraries that control Java application development. JDBC provides capabilities similar to those of ODBC.

Java datatypes

Java classes, either user-defined or from the JavaSoft API, or Java primitive datatypes, such as boolean, byte, short, and int.

Java Development Kit (JDK)

A toolset from Sun Microsystems that allows you to write and test Java programs from the operating system.

Java file

A file of type “java” (for example, myfile.java) that contains Java source code. See class file and Java archive (JAR) .

Java method signature

The Java datatype of each parameter of a Java method.

Java object

An instance of a Java class that is contained in the storage of the Java VM. Java instances that are referenced in SQL are either values of Java columns or Java objects.

Java-SQL column

A SQL column whose datatype is a Java-SQL class.

Java-SQL class

A public Java class that has been installed in the Adaptive Server system. It consists of a set of variable definitions and methods.A class instance consists of an instance of each of the fields of the class. Class instances are strongly typed by the class name.A subclass is a class that is declared to extend (at most) to one other class. That other class is called the direct superclass of the subclass. A subclass has all of the variables and methods of its direct and indirect superclasses, and may be used interchangeably with them.

Java-SQL datatype mapping

Conversions between Java and SQL datatypes. See “Datatype mapping between Java and SQL”.

Java-SQL variable

A SQL variable whose datatype is a Java-SQL class.

Java Virtual Machine (JVM)

The Java interpreter that processes Java in the server. It is invoked by the SQL implementation.

mappable

A Java datatype is mappable if it is either:

A SQL datatype is mappable if it is either:

  • Listed in the first column of Table 9-4, or

  • A public Java-SQL class that is built-in or installed in the Adaptive Server system.

A Java method is mappable if all of its parameter and result datatypes are mappable.

method

A set of instructions, contained in a Java class, for performing a task. A method can be declared static, in which case it is called a class method. Otherwise, it is an instance method. Class methods can be referenced by qualifying the method name with either the class name or the name of an instance of the class. Instance methods are referenced by qualifying the method name with the name of an instance of the class. The method body of an instance method can reference the variables local to that instance.

narrowing conversion

A Java operation for converting a reference to a class instance to a reference to an instance of a subclass of that class. This operation is written in SQL with the convert function. See also widening conversion.

package

A package is a set of related classes. A class either specifies a package or is part of an anonymous default package. A class can use Java import statements to specify other packages whose classes can then be referenced.

pluggable component adaptor/ JVM

A Sybase component that manages service requests between Adaptive Server and the JVM.

pluggable component interface (PCI)

The Adaptive Server Java framework, which lets you, with the help of the PCA/JVM, use a commercially available JVM with Adaptive Server.

pluggable component interface (PCI) Bridge

An Adaptive Server component, and part of the PCI, that enables interaction between the JVM plug-in and Adaptive Server.

procedure

An SQL stored procedure, or a Java method with a void result type.

public

Public fields and methods, as defined in Java.

retained JAR

See associated JAR.

serialization

A serialization of a Java instance is a byte stream containing sufficient information to identify its class and reconstruct the instance. All Java-SQL classes must be either externalizable or serializable. See externalization.

SQL function signature

The SQL datatype of each parameter of a SQLJ function.

SQL-Java datatype mapping

Conversions between Java and SQL datatypes. See “Datatype mapping between Java and SQL”.

SQL procedure signature

The SQL datatype of each parameter of a SQLJ procedure.

static method

A method invoked without referencing an object. Static methods affect the whole class, not an instance of the class. Also called a class method.

subclass

A class below another class in a hierarchy. It inherits attributes and behavior from classes above it. A subclass may be used interchangeably with its superclasses. The class above the subclass is its direct superclass. See superclass, narrowing conversion, and widening conversion.

superclass

A class above one or more classes in a hierarchy. It passes attributes and behavior to the classes below it. It may not be used interchangeably with its subclasses. See subclass, narrowing conversion, and widening conversion.

synonymous classes

Java-SQL classes that have the same fully qualified name but are installed in different databases.

Unicode

A 16-bit character set defined by ISO 10646 that supports many languages.

variable

In Java, a variable is local to a class, to instances of the class, or to a method. A variable that is declared static is local to the class. Other variables declared in the class are local to instances of the class. Those variables are called fields of the class. A variable declared in a method is local to the method.

visible

A Java class that has been installed in a SQL system is visible in SQL if it is declared public; a field or method of a Java instance is visible in SQL if it is both public and mappable. Visible classes, fields, and methods can be referenced in SQL. Other classes, fields, and methods cannot, including classes that are private, protected, or friendly, and fields and methods that are either private, protected, or friendly, or are not mappable.

well-formed document

In XML, the necessary characteristics of a well-formed document include: all elements with both start and end tags, attribute values in quotes, all elements properly nested.

widening conversion

A Java operation for converting a reference to a class instance to a reference to an instance of a superclass of that class. This operation is written in SQL with the convert function. See also narrowing conversion.