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
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 |
What are the various thread priorities?
What is bean? Where can it be used?
whats is mean by jndi
whats is mean by tiles in struts
What is the relationship between local interfaces and container-managed relationships?
Write a java program to find out the sum of harmonic series : 1 + ½ + 1/3 + ……… up to nth term , for any value of n.
what about static?
How to determine SGA site?
What is a class loader? What are the different class loaders used by jvm?
Is multiple try block is possible in single java Application......
what is a dirty read?
how java is os independent language ?