One doesn't retrieve from the DB using collections. One retrieves using JDBC (or an ORM package).
http://java.sun.com/developer/onlineTraining/Database/JDBC20Intro/JDBC20.html
Once you've retrieved it, you might use a collection to store instances of a class that represents a row.
http://java.sun.com/docs/books/tutorial/collections/