Java-SQL column declarations

Description

To declare a Java-SQL column when you create or alter a table, use the following syntax:

Syntax

java_sql_column ::= column_name  java_sql_class_name

Parameters

java_sql_column

Specifies the syntax of Java-SQL column declarations.

column_name

The name of the Java-SQL column.

java_sql_class_name

The name of a Java-SQL class in the current database. This is the “declared class” of the column.

Usage

See also

You use a Java-SQL column declaration only when you create or alter a table. See the create table and alter table information in the Reference Manual.