I'm trying to convert several .mdb files to shape files and I'm having no luck. It bombs on this line:
featureList = source.GetAllFeatures(
ReturningColumnsType.AllColumns);
If I set Returning columns type to NoColumns, I'm able to do the conversion, but with it set to all columns, it gives an error about reading or writing corrupted memory. (Obviously, the converted file has no data though.)
source is defined here:
PersonalGeoDatabaseFeatureSource
source = new PersonalGeoDatabaseFeatureSource(filePath, null, null, null, "SHAPE");
(When I try to use the parameters that are shown as null above, I get other issues, even though i was pretty sure i was using them correctly. I couldn't get anything to work then. Is there some documentation on the method and the parameters somewhere? Maybe that would help.)
Any help would be appreciated!!