com.esri.arcgis.geodatabasedistributed
Interface IImportSchema

All Superinterfaces:
Serializable
All Known Implementing Classes:
ReplicaSchemaImporter

public interface IImportSchema
extends Serializable

Provides access to members that import schema changes to a replica.

Remarks

The IImportSchema interface provides a method to import schema into a target workspace.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.


Method Summary
 void importSchema(ISchemaChanges schemaChanges)
          Import schema info.
 

Method Detail

importSchema

void importSchema(ISchemaChanges schemaChanges)
                  throws IOException,
                         AutomationException
Import schema info.

Remarks

This method is used to import schema into a target workspace.

It takes one parameter, a reference to a schemachanges object as input. The schemachanges object must first be initialized by methods on the ISchemaChangesInit interface. This is where you will specify the target workspace. See the SchemaChanges coclass for more information.

See the ReplicaSchemaExporter coclass for information on exporting a replica schema.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Parameters:
schemaChanges - A reference to a com.esri.arcgis.geodatabasedistributed.ISchemaChanges (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.