Hi,
For presentation take a look at JTable. You could populate this with your query results and then add it to a JScrollPane component so it scrolls. One of JTable's constructors takes two Vectors are arguments, one for the data, one for the headers, so you could do something like this to build the Vectors, then pass them into the JTable.
then to populate the table you can do something like
and add
jsp to your GUI layout where you want it
hope this helps you get going!
[ September 30, 2004: Message edited by: Ben Wood ]