Database 构造函数

定义

重载

Database()

使用默认值初始化表格 Database 的新实例。

Database(String)

使用名称初始化表格 Database 的新实例。

Database(ModelType, Int32)

使用模型类型和兼容性级别初始化表格 Database 对象的新实例。

Database(String, String)

使用名称和标识符初始化表格 Database 的新实例。

Database()

使用默认值初始化表格 Database 的新实例。

public Database ();
Public Sub New ()

适用于

Database(String)

使用名称初始化表格 Database 的新实例。

public Database (string name);
new Microsoft.AnalysisServices.Tabular.Database : string -> Microsoft.AnalysisServices.Tabular.Database
Public Sub New (name As String)

参数

name
String

数据库的名称。

适用于

Database(ModelType, Int32)

使用模型类型和兼容性级别初始化表格 Database 对象的新实例。

public Database (Microsoft.AnalysisServices.ModelType modelType, int compatibilityLevel);
new Microsoft.AnalysisServices.Tabular.Database : Microsoft.AnalysisServices.ModelType * int -> Microsoft.AnalysisServices.Tabular.Database
Public Sub New (modelType As ModelType, compatibilityLevel As Integer)

参数

modelType
ModelType

模型的类型。

compatibilityLevel
Int32

兼容级别。

适用于

Database(String, String)

使用名称和标识符初始化表格 Database 的新实例。

public Database (string name, string id);
new Microsoft.AnalysisServices.Tabular.Database : string * string -> Microsoft.AnalysisServices.Tabular.Database
Public Sub New (name As String, id As String)

参数

name
String

数据库的名称。

id
String

数据库 ID。

适用于