ArrayList « Database « JSP-Servlet Q&A





1. help using an ArrayList with my resultSet    stackoverflow.com

I have a resultSet that has a different number of results every time, and needs to be used multiple times on my page. Currently, I am storing my results in ...

2. Arraylist + database + servlet + DAO    stackoverflow.com

Hello i'm new to hava and i'm having a problem viewing my records from an arraylist in JSP page, whenever i load the page i get: [content.animalBean@1e8614a, content.animalBean@14b52aa, content.animalBean@2026f3, content.animalBean@dd20b6, content.animalBean@18eb00c] 1 ...

4. ArrayList output from Database    coderanch.com

I have an output that I get from my Oracle database where it takes parameters from form entries and queries the database. It list the records where it works with an ArrayList to get the output. Everything works great but was wondering if there is a more efficient way to do this? ArrayList firstnameArray = new ArrayList(); ArrayList lastnameArray = new ...