I have a JDBC result set contains some rows of the same type but in two layers , some are the children of the others:

TYPE | Label | Value
Parent | 192.010 | 12
+ Child | 192.011 | 5
+ Child | 192.012 | 7
Parent | 192.020 | 30
+ Child | 192.021 | 20
+ Child | 192.022 | 10

is there any way to tell JXTreeTable(Or other similar components) to GROUP BY these data and populate them as Parent-Child nodes of a tree table?

currently I use two queries:
<1> first one to load Parent items , and store them in a hash Map
<2> Second one to load All Children and adding them to corresponding parent node

But I hope there were some better ways for implementation.

Thanks a lot

link|improve this question

25% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.