class pixeltable.ResultCursor
Cursor that iterates over query results. Wraps a Query and yields Row objects one at a time, avoiding materializing all results into memory. A cursor transitions through three states: pending (created but not yet started), open (actively iterating), and closed (resources released). Iteration auto-opens and auto-closes the cursor, or you can use it as a context manager for explicit lifecycle control.method close()
Signature
method open()
Signature