I want to display output from 10 SQL queries in JSP page - what is my best structure?

  • Follow


I want to query SQL database tables to gather data on lab system and
services on an on-going basis, etc. I want to display all my gathered
data on single web page and have JSP started that can call SQL
statements.
But should I put all the SQL stuff in seperate JSP and reference that
from my index.jsp?
should I use 'preparedStatement' rather than running the SQL query
each time I want to get latest data from the SQK database?
is there a "refresh" button in JSP so that can reload the page (and
kick offf the SQL statements) and keep me up-to-date on the changes in
the database?
0
Reply terry433iid 4/17/2008 8:41:11 AM

terry433iid@yahoo.com wrote:
> I want to query SQL database tables to gather data on lab system and
> services on an on-going basis, etc. I want to display all my gathered
> data on single web page and have JSP started that can call SQL
> statements.
> But should I put all the SQL stuff in seperate JSP and reference that
> from my index.jsp?

Maybe, maybe not.  Almost certainly, you will have many pages besides 
index.jsp.  Instead of naming your page 'index.jsp', design screens with their 
own names.

> should I use 'preparedStatement' [sic] rather than running the SQL query
> each time I want to get latest data from the SQK database?

You should use a PreparedStatement to run your SQL query each time you want 
the latest data.

> is there a "refresh" button in JSP so that can reload the page (and
> kick offf the SQL statements) and keep me up-to-date on the changes in
> the database?

There is if you code one.

Look up the "Model 2" (as Sun calls it) Model-View-Controller (MVC) architecture.

-- 
Lew
0
Reply Lew 4/17/2008 11:27:22 AM


1 Replies
392 Views

(page loaded in 0.046 seconds)

Similiar Articles:










7/27/2012 2:28:38 PM


Reply: