Freigeben über


ListAvailableSQLServers Method

Dieses Feature wird in einer zukünftigen Version von Microsoft SQL Server entfernt. Verwenden Sie dieses Feature beim Entwickeln neuer Anwendungen nicht, und planen Sie das Ändern von Anwendungen, in denen es zurzeit verwendet wird.

The ListAvailableSQLServers method returns a NameList object that enumerates network-visible instances of Microsoft SQL Server.

Syntax

object
.ListAvailableSQLServers(
)
as
NameList

Parts

  • object
    Expression that evaluates to an object in the Applies To list.

Prototype (C/C++)

HRESULT ListAvailableSQLServers(
LPSQLDMONAMELIST* ppServerNames);

Returns

A NameList object that enumerates instances of SQL Server.

Hinweise

Nondefault instances of SQL Server are displayed in the form of SERVERNAME/INSTANCENAME.

ms140744.note(de-de,SQL.90).gifHinweis:
The ListAvailableSQLServers method maps to the ODBC SQLBrowseConnect function, which does not support connection pooling. Therefore, an application that enables connection pooling might encounter the error "Microsoft SQL-DMO (0x800A000E) [SQL-DMO] Not enough storage is available to complete this operation." when calling ListAvailableSQLServers.

Applies To:

Application Object