createTable method

Creates a new table in the database.

Syntax
TableSchema Connection.createTable(
  String table_name
) throws ULjException
Parameters
  • table_name   The name of table to create.

Remarks

This method can only be executed when the connected database is in schema creation mode.

Returns

The TableSchema object for the new table.

See also