Help coderanch get a
new server
by contributing to the fundraiser
  • Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Ron McLeod
  • Paul Clapham
  • Devaka Cooray
  • Liutauras Vilda
Sheriffs:
  • Jeanne Boyarsky
  • paul wheaton
  • Henry Wong
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Tim Moores
  • Carey Brown
  • Mikalai Zaikin
Bartenders:
  • Lou Hamers
  • Piet Souris
  • Frits Walraven

Retrieving data using iterate and eliminating duplicate values

 
Greenhorn
Posts: 7
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I am executing 2 different sql queries in my action class, the first query retrieves values that are then used in the second query to retrieve related data. Here is my problem, the second query is retrieving from a comment table where there may be two or more rows of data. When this occurs, my jsp will show the same values for each row of comments found. I want to eliminate the duplicate displays and only display the comment. I am new to struts and am not sure how to do that. Here is my action class code looping through the results of the first query:

Here is the jsp code I am using to iterate:

The display is looks kind of like this:
a b c d e f g comment 1
a b c d e f g comment 2
a b c d e f g comment 3
I want it to look like this:
a b c d e f g comment 1
comment 2
comment 3
How do I get this result using the iterate?
[edit: moderator added code tags]
[ October 17, 2003: Message edited by: Junilu Lacar ]
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic