Parent (Command Interface)
[!참고]
이 기능은 다음 버전의 Microsoft SQL Server에서 제거됩니다. 새 개발 작업에서는 이 기능을 사용하지 말고, 현재 이 기능을 사용하는 응용 프로그램은 가능한 한 빨리 수정하십시오.
The Parent property of the Command interface contains a reference to the parent MDStore object of which this object is a child.
Applies To:clsCubeCommand, clsDatabaseCommand, clsRoleCommand
Access
Read-only
주의
The class of the parent object depends on the class of the command object.
Command object class |
Parent object class |
---|---|
clsDatabaseCommand |
|
clsCubeCommand |
|
clsRoleCommand |
예
The following example creates a cube command and assigns it to the first cube in the MDStores collection of the FoodMart 2000 database. It then prints some of the properties of the parent object by using the Parent property of the cube command object.
Dim dsoServer As New DSO.Server
Dim dsoDB As DSO.MDStore
Dim dsoCube As DSO.MDStore
Dim dsoDBCmd As DSO.Command
Dim dsoCubeCmd As DSO.Command
' Connect to the Analysis server.
dsoServer.Connect "LocalHost"
' Get a reference to the FoodMart 2000 database.
Set dsoDB = dsoServer.MDStores("FoodMart 2000")
' Get the first cube in the database's collection.
Set dsoCube = dsoDB.MDStores(1)
Debug.Print "Cube.Name = " & dsoCube.Name
' Add the command to the cube's collection.
Set dsoCubeCmd = dsoCube.Commands.AddNew("TempCommand")
Debug.Print "Cube.Commands(""TempCommand"").Name =" & _
dsoCube.Commands("TempCommand").Name
' Print the properties of the command's
' Parent object.
Debug.Print " .Parent properties" & vbCrLf & _
" -----------"
Debug.Print " TypeName(dsoCubeCmd.Parent) = " & _
TypeName(dsoCubeCmd.Parent)
If dsoCubeCmd.Parent.ClassType = clsCube Then
Debug.Print " .ClassType = clsCube"
Else
Debug.Print "This line should never be executed."
End If
Debug.Print " .Description = " & dsoCubeCmd.Parent.Description
Debug.Print " .Name = " & dsoCubeCmd.Parent.Name
dsoCube.Commands.Remove ("TempCommand")