`arcpy.da.SearchCursor` is returning unpredicable results.
I have an empty table in pro. I just deleted it and saved it, so I know it's empty.
When I then `SearchCursor` on that table it returns results! But the table is empty!
cur = arcpy.da.SearchCursor(full_table_path, field_names)
for c in cur:
print(c)I wanted to use this function to check for duplicates before inserting, but it seems highly unstable. Is there any way to make it pick up recent changes?
Whatever the issue, if the table is not actually empty but just shows empty, or if it's the function, I just need it to work accurately.
It's a file table, so maybe this is why?