Field is never managed by client and description here is only for documentation purposed

interface iserverData {
    command: string;
    select?: string;
    selectFROM: string;
    selectWHERE?: string | string[];
    whereRights?: iwhereRights;
}

Properties

command: string

Request for data can be manged by function instead of common serach function @example: "serverData":{ "command":"this.searchFiles" } - function in the object class is called to provide data instead of universal search function

select?: string

complete list of fields and table name to select from. Used by clips but can be used by list as well

selectFROM: string

Optional name of table to use in select Used by list and details (there is necessary) to defined from which table / view are deta read

selectWHERE?: string | string[]

List of conditions used in select. If list of strings is used, all are used with AND operator between. All are automatically enclosed to the () Supports inheritance: if extension uses array, parent condition(s) are inclueded in the array regardless parent used array or single string If child does not use array parent conditions are never used

whereRights?: iwhereRights