다음을 통해 공유


BusinessLogicModule.UpdateErrorHandler 메서드

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

네임스페이스:  Microsoft.SqlServer.Replication.BusinessLogicSupport
어셈블리:  Microsoft.SqlServer.Replication.BusinessLogicSupport(Microsoft.SqlServer.Replication.BusinessLogicSupport.dll)

구문

‘선언
Public Overridable Function UpdateErrorHandler ( _
    updateSource As SourceIdentifier, _
    updatedDataSet 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
‘사용 방법
Dim instance As BusinessLogicModule 
Dim updateSource As SourceIdentifier 
Dim updatedDataSet As DataSet 
Dim errorLogType As ErrorLogType 
Dim customErrorMessage As String 
Dim errorCode As Integer 
Dim errorMessage As String 
Dim historyLogLevel As Integer 
Dim historyLogMessage As String 
Dim returnValue As ActionOnDataError 

returnValue = instance.UpdateErrorHandler(updateSource, _
    updatedDataSet, errorLogType, customErrorMessage, _
    errorCode, errorMessage, historyLogLevel, _
    historyLogMessage)
public virtual ActionOnDataError UpdateErrorHandler(
    SourceIdentifier updateSource,
    DataSet updatedDataSet,
    ref ErrorLogType errorLogType,
    ref string customErrorMessage,
    int errorCode,
    string errorMessage,
    ref int historyLogLevel,
    ref string historyLogMessage
)
public:
virtual ActionOnDataError UpdateErrorHandler(
    SourceIdentifier updateSource, 
    DataSet^ updatedDataSet, 
    ErrorLogType% errorLogType, 
    String^% customErrorMessage, 
    int errorCode, 
    String^ errorMessage, 
    int% historyLogLevel, 
    String^% historyLogMessage
)
abstract UpdateErrorHandler : 
        updateSource:SourceIdentifier * 
        updatedDataSet:DataSet * 
        errorLogType:ErrorLogType byref * 
        customErrorMessage:string byref * 
        errorCode:int * 
        errorMessage:string * 
        historyLogLevel:int byref * 
        historyLogMessage:string byref -> ActionOnDataError  
override UpdateErrorHandler : 
        updateSource:SourceIdentifier * 
        updatedDataSet:DataSet * 
        errorLogType:ErrorLogType byref * 
        customErrorMessage:string byref * 
        errorCode:int * 
        errorMessage:string * 
        historyLogLevel:int byref * 
        historyLogMessage:string byref -> ActionOnDataError
public function UpdateErrorHandler(
    updateSource : SourceIdentifier, 
    updatedDataSet : DataSet, 
    errorLogType : ErrorLogType, 
    customErrorMessage : String, 
    errorCode : int, 
    errorMessage : String, 
    historyLogLevel : int, 
    historyLogMessage : String
) : ActionOnDataError

매개 변수

  • updatedDataSet
    유형: System.Data.DataSet
    Dataset representing the UPDATE statement that caused the error.
  • errorCode
    유형: System.Int32
    Error code that corresponds to the underlying replication error that occurred.
  • errorMessage
    유형: System.String
    Error message text that corresponds to the underlying replication error that occurred.
  • historyLogLevel
    유형: System.Int32%
    Log level of the custom message returned by the custom business logic handler.
  • historyLogMessage
    유형: System.String%
    Log message provided by custom business logic handler. The log message gets written to the distribution database.

반환 값

유형: Microsoft.SqlServer.Replication.BusinessLogicSupport.ActionOnDataError
The ActionOnDataError action that will be taken by the process after the custom business logic handler has executed.

참고 항목

참조

BusinessLogicModule 클래스

Microsoft.SqlServer.Replication.BusinessLogicSupport 네임스페이스

관련 자료

병합 동기화 중 비즈니스 논리 실행

병합 아티클에 대한 비즈니스 논리 처리기 구현