TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Create File GeoDatabase Without Using Arcgis License
Yogesh Sharma
Oct 01, 2014
16
k
0
1
facebook
twitter
linkedIn
Reddit
WhatsApp
Email
Bookmark
This blog describe how to Create,Open and Delete File Geodatabase Without using ArcGis License.
The File Geodatabase API provides a non-ArcObjects based library where we can work with File Geodatabases. The File Geodatabase API will be C++ based.
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"
);
}
Create
Open and Delete File Geodatabase Without using ArcGis License.
Next Recommended Reading
Read Shape Files Using ArcObject