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 |
Is 'synchronised' a modifier?
If I wanted to use a solarisui for just a jtabbedpane, and the metal ui for everything else, how would I do that?
What is the form of storage space in java?
What is the purpose of the wait(), notify(), and notifyall() methods?
explain the flow of struts?
Difference between hashmap and hashtable?
Which component handles cluster communication in jboss?
What is DTD?
which book is better for jdbc ,servlets and jsp
what is a dirty read?
What is the difference between RMI and Socket?
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?