5.4. Life Cycle of Cursor

 

Declare Cursor: - A cursor is declared by defining the SQL statement that returns a result set.

Open: - A Cursor is opened and populated by executing the SQL statement defined by the cursor.

Fetch: - When cursor is opened, rows can be fetched from the cursor one by one or in a block to do data manipulation.

Close: - After data manipulation, we should close the cursor explicitly.

Deal locate: - Finally, we need to delete the cursor definition and released all the system resources associated with the cursor.


Last modified: Tuesday, 17 December 2019, 5:22 PM