aspose file tools
The moose likes JDBC and the fly likes Retrieving information for a collection of objects from database Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Databases » JDBC
Reply Bookmark "Retrieving information for a collection of objects from database" Watch "Retrieving information for a collection of objects from database" New topic
Author

Retrieving information for a collection of objects from database

Yan Lee
Ranch Hand

Joined: Sep 15, 2003
Posts: 94
Hi:
I am redesigning a module that has to get records from the database corresponding a collection of objects.

In the current implementation, for each object in a collection a JDBC call
is made to an oracle database and information for that object is obtained and mapped to an object. Obviously that causes a lot of database calls.

Is it possible to do this in a more efficient manner? How can I pass a collection of primary keys to a stored procedure and get a resultset that can be mapped back to the collection of primary keys? Is it possible using PL/SQL?

Thanks in advance for the help.
Avi Abrami
Ranch Hand

Joined: Oct 11, 2000
Posts: 1114

p,

Is it possible using PL/SQL?

Yes, it is. Please see my reply in the topic Passing Arrays to Oracle stored procedures (in this forum).

Good Luck,
Avi.
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: Retrieving information for a collection of objects from database
 
Similar Threads
Handling in memory objects with autogenrated key
Using JDO with an existing DB schema
EJB Question
how to display primary keys from metadata
Can i filter Result set