共用方式為


ResolverInfo Property

未來的 Microsoft SQL Server 發行版本將不再提供此功能。請避免在新的開發工作中使用此功能,並計劃修改目前使用此功能的應用程式。

The ResolverInfo property specifies additional data or parameters used by a custom merge replication conflict resolution agent.

語法

object
.ResolverInfo [= value]

Parts

  • object
    An expression that evaluates to an object in the Applies To list
  • value
    A string that matches the SQL Server data type sysname

Data Type

String

Modifiable

Read/write

Prototype (C/C++)

HRESULT GetResolverInfo(SQLDMO_LPBSTR pRetVal);
HRESULT SetResolverInfo(SQLDMO_LPBSTR pRetVal);
ms133500.note(zh-tw,SQL.90).gif附註:
SQL Distributed Management Objects (SQL-DMO) strings are always returned as OLE BSTR objects. A C/C++ application obtains a reference to the string. The application must release the reference using SysFreeString.

備註

Specify a nondefault conflict resolution module using the ArticleResolver property.

A valid value for the ResolverInfo property is determined by a custom conflict resolution module. For example, SQL Server ships with a conflict resolving component called Microsoft SQL Server Stored Procedure Resolver. When using this nondefault conflict resolution component, use the ResolverInfo property to specify a user-created stored procedure called by the component to resolve merge article conflicts.

Applies To:

MergeArticle Object