This sample will demonstrate the how to create a new file geodatabase stored with a .gdb extension.
[VCPP]
How to use
- Paste the function in your project.
- Call the function from your code.
// Creates a new File Geodatabase in the specified location.
HRESULT createFileGDBWorkspace(BSTR location, BSTR name, IWorkspaceName
**ppOutWorkspaceName)
{
if (ppOutWorkspaceName == NULL)
return E_POINTER;
IWorkspaceFactoryPtr ipWorkspaceFactory(CLSID_FileGDBWorkspaceFactory);
return ipWorkspaceFactory->Create(location, name, NULL, NULL,
ppOutWorkspaceName);
}
Development licensing | Deployment licensing |
---|---|
Engine Developer Kit | Engine |