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)
Answer Posted / 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 View All Answers
whats is mean by connectionpooling
Is the session factory thread safe?
How primary key is implemented in Oracle?
Why is string immutable in java?
Explain the difference between object state and behavior?
what is an isolation level?
What is table mutation and how do you avoid it?
What is the difference between static and non-static with examples?
What is ioc concept & explain it?
Do I have to use jsps with my application?
What class is the top of the awt event hierarchy?
whats is mean by tiles in struts
Write a program to show synchronization?
What is Stream Tokenizer?
What are local interfaces? Describe.