Description (clsServer)
[!NOTA]
Questa caratteristica verrà rimossa a partire dalla prossima versione di Microsoft SQL Server. Non utilizzare questa caratteristica in un nuovo progetto di sviluppo e modificare non appena possibile le applicazioni in cui è attualmente implementata.
The Description property of an object of ClassType clsServer contains the server description.
Data Type
String
Access
Read/write
Esempio
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