Author
JDBC Oracle Cursor Vs Array
Babji Reddy
Ranch Hand
Joined: Jan 24, 2006
Posts: 106
posted Sep 19, 2006 20:50:00
0
In JDBC using Oracle Oci driver Which one does perform better processing multiple (thousands) records? Using cursor of records (using ResultSet ) or Array of objects (using ARRAY of STRUCT ) Thanks
Jeanne Boyarsky
internet detective
Marshal
Joined: May 26, 2003
Posts: 26141
Babji, I have no idea, but to help others who might - what are you trying to do? A select, an update, an insert, ...? You could also try it by writing a simple program that does it both ways.
[Blog ] [JavaRanch FAQ ] [How To Ask Questions The Smart Way ] [Book Promos ]
Blogging on Certs: SCEA Part 1 , Part 2 & 3 , Core Spring 3 , OCAJP , OCPJP beta , TOGAF part 1 and part 2
Babji Reddy
Ranch Hand
Joined: Jan 24, 2006
Posts: 106
posted Sep 24, 2006 10:46:00
0
Mostly its selects, but there could be few inserts too. I want to know the standarad practise that people use in enterprise applications. Thanks
subject: JDBC Oracle Cursor Vs Array