createColumn method

Creates a new column of a fixed size type.

Syntax
ColumnSchema TableSchema.createColumn(
  String column_name,
  short column_type
) throws ULjException
Parameters
  • column_name   The name of the new column. The specified name must be a valid SQL identifier.

  • column_type   One of the Domain type constants representing a fixed size column type.

See also

Domain interface

Returns

The ColumnSchema assigned to the created column with the specified name and type.