Java: Storing information from database. What collections are appropriate?

Posted by garvy on Stack Overflow See other posts from Stack Overflow or by garvy
Published on 2010-06-07T13:57:26Z Indexed on 2010/06/07 14:02 UTC
Read the original article Hit count: 137

Filed under:
|
|
|

I write an application in Java. I get form a database a table (clients) which contains fields like:

name | surname | adress

What is the best solution to store this data in my app? Should I create an object for each client and store these objects in a list or set?

The table contains about 100 records and it's already sorted. Thanks in advance.

© Stack Overflow or respective owner

Related posts about java

Related posts about database