Nota
L'accés a aquesta pàgina requereix autorització. Podeu provar d'iniciar la sessió o de canviar els directoris.
L'accés a aquesta pàgina requereix autorització. Podeu provar de canviar els directoris.
Esta característica se quitará en una versión futura de Microsoft SQL Server. Evite utilizar esta característica en nuevos trabajos de desarrollo y tenga previsto modificar las aplicaciones que actualmente la utilizan.
The SQLServers collection contains SQLServer objects created by the SQL Distributed Management Objects (SQL-DMO) application.
.gif)
Properties
|
Methods
Notas
SQL-DMO maintains the SQLServers collection. Members are added when the application creates a new instance of a SQLServer object and are removed when the application releases all references it holds on the member. For example:
Dim oSQLServer as SQLDMO.SQLServer
' SQLServer object not created. No member in SQLServers collection.
Set oSQLServer = New SQLDMO.SQLServer
' SQLServer object is now a member of the SQLServers collection.
Set oSQLServer = Nothing
' SQLServer object references released and member removed
' from SQLServers collection.
When using the Item method, the SQLServers collection supports member identification using either name or ordinal reference syntax. For example:
Set oSQLServer = oApplication.SQLServers("SEATTLE1")
Or:
Set oSQLServer = oApplication.SQLServers(2)