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 |
Difference between swing and awt?
Name the method to find, if a thread is active or not?
important features of java which differenciate it from c++
What is meant by multi-threading?
What is the argument type of a programs main() method?
difference between Abstract and Interface?
whats is mean by connectionpooling
what is a non-repeatable read?
What method is used to create the daemon thread?
What are different types of controls in AWT?
What is preemptive and Non-preemptive Time Scheduling?
What state does a thread enter when it terminates its processing?