i have a 1000 objects in data base i need to display those
in jsp's how can i retrive those objects in jsp. (consider
the performance issue)

Answers were Sorted based on User's Feedback



i have a 1000 objects in data base i need to display those in jsp's how can i retrive those o..

Answer / nainasona

Try using Display Tag (Tag Libraries)

Is This Answer Correct ?    3 Yes 3 No

i have a 1000 objects in data base i need to display those in jsp's how can i retrive those o..

Answer / harini

By using scriplet tag in jsp we can get tho 1000 obbjects.
for example,
<%
----------------------
--------------- jdbc code
----------------------

while (rs.next())
{
---------------------
-------------------
%>


like this we can get 1000 objects.....
<%=
rs.getInt(1);
-----
-----
%>
<%
}
%>

Is This Answer Correct ?    1 Yes 1 No

Post New Answer

More Advanced Java Interview Questions

What is the name of the state, when a thread is executing?

4 Answers  


What are local interfaces? Describe.

0 Answers  


How do you set security in applets?

1 Answers   IBM,


Can I use multiple html form elements with the same name?

0 Answers  


How are the elements of a borderlayout organized?

0 Answers  


What is threadfactory?

0 Answers  


how to get value in combo for updation?

1 Answers   CMC,


What are the diff types of exception?

0 Answers  


What is daemon thread?

3 Answers  


What is RMI architecture?

11 Answers   Infosys,


what are memory considerations of jsp compares to other web components?

0 Answers   TCS,


Difference Between java & javax

5 Answers   Sun Microsystems, Wipro,


Categories