Question

Attribute issue

  • 13 December 2017
  • 1 reply
  • 0 views

Badge +1

Hi,

I developing one application using FME .net DLL

I need to write one value in one attribute in File GDB. I have created the GDB template file with that attribute. But it fails to update the value in File GDB and please find the parameter I have set for the writer.

StringCollection strColWriter = new StringCollection();

strColWriter.Add("DATASET");

strColWriter.Add(<template path>);

strColWriter.Add("IDs");

strColWriter.Add(<feature class name>);

Please suggest me the solution ASAP.

 


1 reply

Badge +2

Why not just use workbench to write attributes to an Esri Geodb? Why use the FME SDK? If you have to use the SDK, we'd suggest that you first build the workflow in FME Workbench to test your methodology. then you have two options, use IFMEWorkspaceRunner to embed that in your own application or use the workspace as a model for your own code.

Reply