We made copies of our feature class tables and copied them over to several GeoPackages. Now I want to use the geopackages in a FME workspace to import data to the same table again.
First step therefore is to validate the GPKG table to the DB table to make sure that the structure and fields are correct and dtermine the correct db table.
To accomplish this, I use a dynamic reader and collect all field names (attribute{}.name), concatenae them and compare the resultin strings with the concatenated string of the db table.
This generally works as expected but unfortunately the FID column is missing in the attribute{}.name list from the GPKG reader.
I know that there is the geopackage_fid attribute but that attribute only holds the value and not the name of the FID column.
is there a way to get the name of the fid field of a GPKG?