D

Database Cursor

Definition

A database object that enables traversal over the rows of a result set one at a time, rather than fetching all rows at once. Cursors are used for row-by-row processing in stored procedures, and in application code for memory-efficient pagination of large result sets.

Defined Term