Hi,
Â
I want to read only one Attribute(FGDB_ID) from a File Geodatabase with Python.The geometry is not required. The readout of the File Geodatebase works well, but no features are generated.ÂThe Attributes will be printed only in the log window, but no Features will be generated.
How can I create features from the individual values?
import fmeobjects
import arcpy
# Template Class
class FeatureCreator(object):
    def __init__(self):
        # Name der FC
        fc = "\\\\path\\gdb.gdb\\GK_ANNO"
        # Ergebnisliste
        FGDB_ID = ]
        # ArcPy-Suchcursor erstellen und auf die entsprechende Spalte der FC
        # ansetzen.
        cursor = arcpy.SearchCursor(fc, "", "", "FGDB_ID")
        # Spalte zeilenweise auslesen...
        for row in cursor:
        # ... und FGDB_ID an Ergebnisliste anhängen.
            FGDB_ID.append(row.FGDB_ID)
        #pprint(FGDB_ID)
        for id in FGDB_ID:
            print(id)
        pass
    def close(self):
        feature = fmeobjects.FMEFeature()
        self.pyoutput(feature)
And sorry for my bad english ;)