Using MapXtreme 9.2 in .NET I need to create a table and load 13000 features. Currently I create the features, adding them to a feature collection and then use
table.BeginAccess(TableAccessMode.Write);
table.InsertFeatures(newFeaturesCollection);
table.EndAccess();
This is taking on average around 6000ms.
If I save the data to a TAB file and then open it using
Session.Current.Catalog.OpenTable(tableinfo)
it takes 29ms.
Is it possible to improve the performance of InsertFeatures? Am I missing something? Why is the TAB file almost 6 seconds faster to load?
------------------------------
Liz Walker
------------------------------