What is cursor? and Types of Cursor?
Select an image from your device to upload
1) Open2) Close3) Fetch
and do some manipulations on the values Explicit Cursors are classified into
1) Normal cursor2) Parameterized cursor3) Cursor For Loops and 4) REF cursors
REF Cursors:
Normally when we create a normal cursor we cant change the select query associated to that query (the query which is given at the time of definition)
But using REF cursors we can change the cursor statement also.
These REF cursors are useful when we are sending data from one environment to another environment.
Visit: http://kalitinterviewquestions.blogspot.com/
Cursor :
Cursors are special programming constructs that allow data to be manipulated on a row-by-row basis, similar to other structured programming languages. They are declared like a variable, and then move one record at a time using a loop for control...
Types Of Cursor ?
Static cursorsA static cursor always displays the result set as it was when the cursor was opened. Static cursors are always read-only.Dynamic CursorsDynamic cursors are the opposite of static cursors. Dynamic cursors reflect all changes made to the rows in their result set when scrolling through the cursor.Forward-only CursorsA forward-only cursor does not support scrolling; it supports only fetching the rows serially from the start to the end of the cursorKeyset-driven CursorsThe keyset is the set of the key values from all the rows that qualified for the SELECT statement at the time the cursor was opened......