clsDatabaseCommand

An object of ClassType clsDatabaseCommand provides a specific implementation of the Decision Support Objects (DSO) Command interface. This object provides collections, methods, and properties through the Command interface.

Remarks

A clsDatabaseCommand object encapsulates a user-defined command that is automatically executed on the Microsoft® SQL Server™ OLAP Services client when the database containing the command is accessed. You add a command to a database by adding it to the database’s Commands collection. Such commands include calculated members, named sets, library references, and others.

For more information, see About Decision Support Objects.

Example

Use the following code to create an object of ClassType clsDatabaseCommand:

'Assume an object (dsoServer) of ClassType clsServer exists

'with an existing database

Dim dsoDB As DSO.MDStore        'Database

Dim dsoCmd As DSO.Command    'Command

Set dsoDB = dsoServer.MDStores(1)

Set dsoCmd = dsoCube.Commands.AddNew("DBCmd1")

(c) 1988-1998 Microsoft Corporation. All Rights Reserved.