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 |
does j2ee means advanced java
what is a Daemon Thread?
What is the map interface?
Is jvm a overhead?
What are different types of layout managers in java.awt package?
Why DOM Parser would take more Memory than SAX parser while they are parsing?
How primary key is implemented in Oracle?
How many times may an objects finalize() method be invoked by the garbage collector?
whats is mean by object and class?
Do I have to use jsps with my application?
What is Lock Based Protocol and what is its use?
What is the difference between RMI and Socket?