Difference While Doing Customization With DataBase & Without DataBase Services
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi,
I am working on the AutoCAD customization and doing the same by VB.Net & C#.Net. But I just want to know the difference as mentioned below:
1. Insert Block In AutoCAD
Using VB.Net without using DataBase services
Only 1 statement is required to Insert the Block
objAcadDocument.ModelSpace.InsertBlock(Required Arguments are here)
Using C#.Net with DataBase services
There are many statments are there to insert only 1 block
Like Start Transaction, Lock the document, Get the Object Id Block etc....
So my quetion is that when I have to use DataBase services and when not
OR
what is the advantage of doing customization using DataBase services rather than go for wihout DataBase services.?