Merge Method (otherDatabase)

Microsoft Deployment Compression & Installer

Copy image CopyHover image
Deployment Tools Foundation Merge Method (otherDatabase)
Deployment Tools Foundation NamespacesMicrosoft.Deployment.WindowsInstallerDatabaseMerge(Database)
Merges another database with this database.
Declaration Syntax
C# Visual Basic Visual C++
public void Merge(
	Database otherDatabase
)
Public Sub Merge ( 
	otherDatabase As Database
)
public:
void Merge(
	Database^ otherDatabase
)
Parameters
otherDatabase (Database)
The database to be merged into this database
Remarks

MsiDatabaseMerge does not copy over embedded cabinet files or embedded transforms from the reference database into the target database. Embedded data streams that are listed in the Binary table or Icon table are copied from the reference database to the target database. Storage embedded in the reference database are not copied to the target database.

The Merge method merges the data of two databases. These databases must have the same codepage. The merge fails if any tables or rows in the databases conflict. A conflict exists if the data in any row in the first database differs from the data in the corresponding row of the second database. Corresponding rows are in the same table of both databases and have the same primary key in both databases. The tables of non-conflicting databases must have the same number of primary keys, same number of columns, same column types, same column names, and the same data in rows with identical primary keys. Temporary columns however don't matter in the column count and corresponding tables can have a different number of temporary columns without creating conflict as long as the persistent columns match.

If the number, type, or name of columns in corresponding tables are different, the schema of the two databases are incompatible and the installer will stop processing tables and the merge fails. The installer checks that the two databases have the same schema before checking for row merge conflicts. If the schemas are incompatible, the databases have be modified.

Win32 MSI API: MsiDatabaseMerge

Exceptions
Exception Condition
MergeException merge failed due to a schema difference or data conflict
InvalidHandleException the Database handle is invalid

Assembly: Microsoft.Deployment.WindowsInstaller (Module: Microsoft.Deployment.WindowsInstaller.dll) Version: 3.0.0.0 (3.9.1006.0)