Description (clsServer)
Hinweis: |
---|
Dieses Feature wird in der nächsten Version von Microsoft SQL Server entfernt. Verwenden Sie dieses Feature nicht zum Entwickeln neuer Anwendungen, und planen Sie das Ändern von Anwendungen, in denen es zurzeit verwendet wird, zum frühstmöglichen Zeitpunkt ein. |
The Description property of an object of ClassType clsServer contains the server description.
Data Type
String
Access
Read/write
Beispiel
The following code example prints the Description property of an object of ClassType clsServer to the Debug window.
Dim dsoServer As New DSO.Server
' Connect to the local Analysis server.
dsoServer.Connect "LocalHost"
' Print the Description property to the Debug window.
Debug.Print dsoServer.Description