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 happens when we invoke a thread?s interrupt method while it is in sleeping or waiting condition?
how the action can be map from jsp page to bean class in mvc1
what is heepStored?
what is difference between object state and behaviour?
What state a thread enters, When it blocks on I/O?
What modifiers may be used with an inner class that is a member of an outer class?
In our urls and in the text of the buttons we have comma. Its causing an error. Is there a way to change the delimiting character for the menu arguments?
If i learn Java, what kind of applications can i create that will help Banking, Retail, Hotel, Logistics industry.
Can we sent objects using Sockets?
What is the purpose of the wait(), notify(), and notifyall() methods?
How is a java object message delivered to a non-java client?
whether the connectionpooling used in struts?