There are so many task that we can do using Geodatabase API.
Create, Open and Delete file geodatabases.
Process
- In Visual studio application project take framework 4.0 and create application.
- Download GeodatabaseAPI and add reference that dll and then create application.
- Following are tha sample code for create,open and delete geodatabase.
- private void Form1_Load(object sender, EventArgs e)
- {
- Geodatabase.Create("C:\\temp\\a.gdb");
- Geodatabase gdb= Geodatabase.Open(@"D:\Test\Mapping\Data.gdb");
- Geodatabase.Delete(@"D:\Test\Mapping\Data.gdb");
- }

Join the conversation! Your thoughts help the community grow.