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

explain the flow of struts?

2 Answers   SolutionNET,


what is difference between object state and behaviour?

3 Answers  


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)

2 Answers  


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

0 Answers  


Will it be called overriding if I do not change the parameters or return type, instead throw a different exception in the method signature.

4 Answers   HeadStrong,






How to determine applet?s height and width?

1 Answers  


What modifiers may be used with an interface declaration?

0 Answers  


what about static?

1 Answers  


how i secure my site with the https protocol.what are the steps?

0 Answers  


can any one tell me how to learn good coding techniques

3 Answers  


what is diff between Access modifier and specifier?

5 Answers   L&T,


Do I have to use jsps with my application?

0 Answers  


Categories