Class ExtraTableInfo

With this class you can retrieve meta information about an extra table. The class will only retrieve information, thus it is not possible to change an extra table from this class.

Examples

ExtraTableInfo e;

e.load("y_mytable");

Constructors

ExtraTableInfo()

Initializes a new instance of the ExtraTableInfo class.

Declaration

ExtraTableInfo

Examples

ExtraTableInfo e;

e.load("y_mytable");

Methods

getFlags()

Returns the flags for this extra table.

Declaration

Integer getFlags()

Returns

Type Description
Integer The flags for this table.

getId()

Returns the ID of the extra table.

Declaration

Integer getId()

Returns

Type Description
Integer The ID of the extra table.

getName()

Return the textual name of the extra table.

Declaration

String getName()

Returns

Type Description
String The textual name of the extra table.

load(String)

Load the extra table with the given table name.

Declaration

Void load(String tableName)

Parameters

Type Name Description
String tableName Name of the table (for example y_mytable).

Returns

Type Description
Void