Reusing a Cursor
Reusing a cursor means compiling a SQL statement just once, but executing it more than once. When a SQL statement is compiled, the database checks the syntax and chooses a query path. By doing this only once, but executing this statement several times, you can obtain an improvement in performance.
In PeopleCode, you can reuse a cursor either by using the ReuseCursor property or by following certain restrictions in your code.