Hi all,
I'm having some trouble with an insert cursor, I keep getting the error,
Traceback (most recent call last):
File "<string>", line 129, in execute
SystemError: error return without exception set
Failed to execute (Tool)
Can anyone help me with this error?
with arcpy.da.Editor(r"E:\Time_Series_Graphing_project") as edit:
with arcpy.da.InsertCursor(r"E:\Time_Series_Graphing_project\TemporalData", ("POINTID", "DataIndex", "Value"))as cursor:
cursor.insertRow((PointIndex, index, data))