Interface XmlaDataSourceOptions

interface XmlaDataSourceOptions {
    agentType?: AgentType;
    authMethod?: string;
    caption?: string;
    catalog?: string;
    dbInitialization?: string;
    dialect: MDXDialect;
    id?: string;
    key?: string;
    name?: string;
    schema?: Schema;
    settings: XmlaDataSourceSettings;
    syntax?: Syntax;
    tables?: TableEntity[];
    type: "SQL" | "XMLA" | "OData";
    useLocalAgent?: boolean;
}

Hierarchy

  • DataSourceOptions
    • XmlaDataSourceOptions

Properties

agentType?: AgentType
authMethod?: string
caption?: string
catalog?: string

DB Schema / OData Catalog ...

dbInitialization?: string

Initialization Script for wasm database

dialect: MDXDialect
id?: string

System id in server

key?: string

Semantic key

name?: string

Deprecated

use key

schema?: Schema
syntax?: Syntax

数据查询所使用的语言

tables?: TableEntity[]

Table defination for wasm database

type: "SQL" | "XMLA" | "OData"
useLocalAgent?: boolean

Generated using TypeDoc