Hi,I'm using the arcpy.SearchCursor code to query a standalone table. All I really need is the count of the results - not any of the actual data. The searchcursor itself finishes rather quickly, but iterating through the search cursor takes a surprisingly long time. Here's the method I'm using. Is there a faster way to get what I need? rows = arcpy.SearchCursor(table,searchstring)
#count the number of rows in output
count = 0
for row in rows:
count += 1