TableBinding Constructors

Definition

Overloads

TableBinding()

Initializes a new instance of the TableBinding class using default values.

TableBinding(String, String, String)

nitializes a new instance of the TableBinding class with the specified data source, schema, and table.

TableBinding()

Initializes a new instance of the TableBinding class using default values.

public TableBinding ();
Public Sub New ()

Applies to

TableBinding(String, String, String)

nitializes a new instance of the TableBinding class with the specified data source, schema, and table.

public TableBinding (string dataSourceId, string schema, string table);
new Microsoft.AnalysisServices.TableBinding : string * string * string -> Microsoft.AnalysisServices.TableBinding
Public Sub New (dataSourceId As String, schema As String, table As String)

Parameters

dataSourceId
String

The data source identifier for the table data.

schema
String

The schema name of the database.

table
String

The name of the table in the database to be bound.

Applies to