Author
what is real world uses of cursors?
raminaa niilian
Ranch Hand
Joined: Jul 14, 2005
Posts: 550
Hi Thank you for reading my post What is real use of cursors, why we shuould have cursor in a select statement when we can return the rows without using cursors? Thanks
Remko Strating
Ranch Hand
Joined: Dec 28, 2006
Posts: 893
posted Aug 14, 2007 14:27:00
0
With a cursor you can step through and process the rows in a ResultSet one by one. In this not working code example you can process the Resultset with the help of a cursor one by one.
Remko (My website )
SCJP 1.5, SCWCD 1.4, SCDJWS 1.4, SCBCD 1.5, ITIL(Manager), Prince2(Practitioner), Reading/ gaining experience for SCEA,
raminaa niilian
Ranch Hand
Joined: Jul 14, 2005
Posts: 550
So when we are iterating over a resultset we are using a cursor, but it is implecit, that was something which i did not know. Thanks
subject: what is real world uses of cursors?