Hi,
Looking for some help with creating feature datasets in a new Geodatabase. The following code works find with 10.1, but not 9.3.1.
The exception thrown by createFeatureDataset:
AutomationException: 0x8004120e - The table was not found. [GDB_DBTune] in 'ESRI GeoDatabase'
Thanks
Looking for some help with creating feature datasets in a new Geodatabase. The following code works find with 10.1, but not 9.3.1.
Code:
IGeographicCoordinateSystem m_geographicCoordinateSystem = (new SpatialReferenceEnvironment())
.createGeographicCoordinateSystem(esriSRGeoCSType.esriSRGeoCS_WGS1984);
IWorkspaceFactory m_workspaceFactory = new FileGDBWorkspaceFactory();
IWorkspaceName workspaceName = m_workspaceFactory.create(workspacePath, gdbfileName, null, 0);
Workspace m_workspace = new Workspace(m_workspaceFactory.openFromFile(workspaceName.getPathName(), 0));
FeatureDataset featureDataset = new FeatureDataset(m_workspace.createFeatureDataset(name, m_geographicCoordinateSystem));AutomationException: 0x8004120e - The table was not found. [GDB_DBTune] in 'ESRI GeoDatabase'
Thanks