Interface ITableRecord

interface ITableRecord {
    qComment: string;
    qFields: IFieldInTableData[];
    qIsDirectDiscovery: boolean;
    qIsSynthetic: boolean;
    qLoose: boolean;
    qName: string;
    qNoOfRows: number;
    qPos: IPoint;
}

Hierarchy

  • ITableRecord
    • ITableRecord

Properties

qComment: string

Comment related to the table.

qFields: IFieldInTableData[]

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: IPoint

Information about the position of the table.