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
Explain how will the struts know which action class to call when you submit a form?
how to use debug in my elipse to solve problems that exist in my project
What is jboss?
Where can I find seam examples and documentation?
Explain what is orm?
Why are my checkboxes not being set from on to off?
what are memory considerations of jsp compares to other web components?
How to implement dphibernate to activate lazy loading in Flex with java ?thanx in advance!
Can I use multiple html form elements with the same name?
Explain the steps in details to load the server object dynamically?
What is clustering? What are the different algorithms used for clustering?
What is the relationship between local interfaces and container-managed relationships?
AS a developer will u create a data source in connection pool? If so how will u do that, how to access the object from connection pool using IRAD tool?
Explain phantom read?
Can you control when passivation occurs?