DataSet.MergeFailed Event

Occurs when a target and source DataRow have the same primary key value, and EnforceConstraints is set to true.

Namespace: System.Data
Assembly: System.Data (in system.data.dll)

'Declaration
Public Event MergeFailed As MergeFailedEventHandler
'Usage
Dim instance As DataSet
Dim handler As MergeFailedEventHandler

AddHandler instance.MergeFailed, handler

/** @event */
public void add_MergeFailed (MergeFailedEventHandler value)

/** @event */
public void remove_MergeFailed (MergeFailedEventHandler value)

In JScript, you can handle the events defined by a class, but you cannot define your own.
Not applicable.

For more information about handling events, see Consuming Events.

The following example demonstrates the use of the MergeFailed event.


Private Shared Sub DemonstrateMergeFailedEvent()
	' Create a DataSet with one table containing two columns.
	Dim dataSet AS DataSet = New DataSet("dataSet")
	Dim table As DataTable = New DataTable("Items")
	
	' Add table to the DataSet.
	dataSet.Tables.Add(table)

	' Add two columns to the DataTable.
	table.Columns.Add("id", Type.GetType("System.Int32"))
	table.Columns.Add("item", Type.GetType("System.Int32"))

	' Set the primary key to the first column.
	table.PrimaryKey = new DataColumn() { table.Columns("id") }

	' Add MergeFailed event handler for the table.
	AddHandler dataSet.MergeFailed, _
        New MergeFailedEventHandler(AddressOf Merge_Failed)

	' Create a second DataTable identical to the first, 
	Dim t2 As DataTable = table.Clone()

	' Set the primary key of the new table to the second column.
	' This will cause the MergeFailed event to be raised when the
	' table is merged into the DataSet.
	t2.PrimaryKey = New DataColumn() { t2.Columns("item") }
	
	' Merge table into the DataSet.
	Console.WriteLine("Merging...")
	dataSet.Merge(t2, false, MissingSchemaAction.Add)
End Sub

Private Shared Sub Merge_Failed(sender As object, _
    e As MergeFailedEventArgs)
	Console.WriteLine("Merge_Failed Event: '{0}'", e.Conflict)
End Sub


Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.

.NET Framework

Supported in: 3.0, 2.0, 1.1, 1.0

.NET Compact Framework

Supported in: 2.0

XNA Framework

Supported in: 1.0

Community Additions

ADD
Show: