Type Alias TableRecord

type TableRecord = {
    qComment?: string;
    qFields?: FieldInTableData[];
    qIsDirectDiscovery?: boolean;
    qIsSynthetic?: boolean;
    qLoose?: boolean;
    qName?: string;
    qNoOfRows?: number;
    qPos?: Point;
    qProfilingData?: TableProfilingData;
    qTableTags?: string[];
}
Index

Properties

qComment?: string

Comment related to the table.

qFields?: FieldInTableData[]

Information about the fields in the table.

qIsDirectDiscovery?: boolean

If set to true, Direct Discovery is used. Direct Discovery fields are not loaded into memory and remain in the external database.

qIsSynthetic?: boolean

This property is set to true if the table contains a synthetic key.

qLoose?: boolean

This property is set to true if the table is loose.

qName?: string

Name of the table.

qNoOfRows?: number

Number of rows in the table.

qPos?: Point

Information about the position of the table.

qProfilingData?: TableProfilingData

Profiling information of the table.

qTableTags?: string[]

List of tags related to the table.