DatabaseCollection.Add 方法

定义

重载

Add()

使用生成的唯一名称和标识符创建一个新的 Database 对象,将其添加到集合末尾,并返回新创建的数据库。

Add(Database)

将指定的 Database 添加到集合末尾。

Add(String)

使用指定的名称创建一个新的 Database 对象,将其添加到集合末尾,并返回新创建的数据库。

Add(String, String)

使用指定的名称和标识符创建一个新的 Database 对象,将其添加到集合末尾,并返回新创建的数据库。

Add()

使用生成的唯一名称和标识符创建一个新的 Database 对象,将其添加到集合末尾,并返回新创建的数据库。

public Microsoft.AnalysisServices.Tabular.Database Add ();
override this.Add : unit -> Microsoft.AnalysisServices.Tabular.Database
Public Function Add () As Database

返回

新创建的 Database 对象。

适用于

Add(Database)

将指定的 Database 添加到集合末尾。

public int Add (Microsoft.AnalysisServices.Tabular.Database item);
override this.Add : Microsoft.AnalysisServices.Tabular.Database -> int
Public Function Add (item As Database) As Integer

参数

item
Database

要添加的 Database

返回

Database 添加到集合时所在的从零开始的索引。

例外

  • 指定的项为空引用 (在 Visual Basic 中为 Nothing)。
  • 集合中已存在指定的项。
  • 指定的 Database 标识符在集合中无效。
  • 指定的名称 Database 在集合中无效。
  • 指定的 Database 兼容性级别在集合中无效。

适用于

Add(String)

使用指定的名称创建一个新的 Database 对象,将其添加到集合末尾,并返回新创建的数据库。

public Microsoft.AnalysisServices.Tabular.Database Add (string name);
override this.Add : string -> Microsoft.AnalysisServices.Tabular.Database
Public Function Add (name As String) As Database

参数

name
String

新的 Database 对象的名称。

返回

新创建的 Database 对象。

例外

指定的名称在集合中无效。

注解

基于指定的名称生成新 Database 对象的标识符。

适用于

Add(String, String)

使用指定的名称和标识符创建一个新的 Database 对象,将其添加到集合末尾,并返回新创建的数据库。

public Microsoft.AnalysisServices.Tabular.Database Add (string name, string id);
override this.Add : string * string -> Microsoft.AnalysisServices.Tabular.Database
Public Function Add (name As String, id As String) As Database

参数

name
String

新的 Database 对象的名称。

id
String

新的 Database 对象的标识符。

返回

新创建的 Database 对象。

例外

  • 指定的名称在集合中无效。
  • 指定的标识符在集合中无效。

适用于