共用方式為


BusinessLogicModule.DeleteErrorHandler Method

Optional method that implements the custom business logic invoked when an error occurs at the time a DELETE statement is being uploaded or downloaded.

命名空間: Microsoft.SqlServer.Replication.BusinessLogicSupport
組件: Microsoft.SqlServer.Replication.BusinessLogicSupport (in microsoft.sqlserver.replication.businesslogicsupport.dll)

語法

'宣告
Public Overridable Function DeleteErrorHandler ( _
    deleteSource As SourceIdentifier, _
    deletedDataSet As DataSet, _
    ByRef errorLogType As ErrorLogType, _
    ByRef customErrorMessage As String, _
    errorCode As Integer, _
    errorMessage As String, _
    ByRef historyLogLevel As Integer, _
    ByRef historyLogMessage As String _
) As ActionOnDataError
public virtual ActionOnDataError DeleteErrorHandler (
    SourceIdentifier deleteSource,
    DataSet deletedDataSet,
    ref ErrorLogType errorLogType,
    ref string customErrorMessage,
    int errorCode,
    string errorMessage,
    ref int historyLogLevel,
    ref string historyLogMessage
)
public:
virtual ActionOnDataError DeleteErrorHandler (
    SourceIdentifier deleteSource, 
    DataSet^ deletedDataSet, 
    ErrorLogType% errorLogType, 
    String^% customErrorMessage, 
    int errorCode, 
    String^ errorMessage, 
    int% historyLogLevel, 
    String^% historyLogMessage
)
public ActionOnDataError DeleteErrorHandler (
    SourceIdentifier deleteSource, 
    DataSet deletedDataSet, 
    /** @ref */ ErrorLogType errorLogType, 
    /** @ref */ String customErrorMessage, 
    int errorCode, 
    String errorMessage, 
    /** @ref */ int historyLogLevel, 
    /** @ref */ String historyLogMessage
)
JScript 不支援以傳址方式傳遞值類型的引數。

參數

  • deleteSource
    SourceIdentifier that indicates whether the source of the delete that generated the error is the Publisher or the Subscriber.
  • deletedDataSet
    Dataset that contains the GUID of the row that was deleted.
  • customErrorMessage
    Output parameter used to return a custom error message. This parameter is used only if the return value is AcceptCustomErrorBehavior.
  • errorCode
    Error code that corresponds to the underlying replication error that occurred.
  • errorMessage
    Error message text that corresponds to the underlying replication error that occurred.
  • historyLogLevel
    Log level of the custom message returned by the custom business logic handler.
  • historyLogMessage
    Log message provided by the custom business logic handler. The log message gets written to the distribution database.

傳回值

The ActionOnDataError action that will be taken by the process after the custom business logic handler has executed.

執行緒安全性

Any public static (Shared in Microsoft Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

平台

開發平台

如需受支援的平台清單,請參閱<安裝 SQL Server 2005 的硬體和軟體需求>。

目標平台

如需受支援的平台清單,請參閱<安裝 SQL Server 2005 的硬體和軟體需求>。

請參閱

參考

BusinessLogicModule Class
BusinessLogicModule Members
Microsoft.SqlServer.Replication.BusinessLogicSupport Namespace

其他資源

在合併同步處理期間執行商務邏輯
How to: Implement a Business Logic Handler for a Merge Article (Replication Programming)