how to execute Oracle "CONNECT BY" using JPA or Hibernate annotation?
843830Apr 26 2010 — edited Apr 28 2010hihi
I want to uses ORACLE "CONNECT BY" to obtain each level of tree structure, like:
A
|-B
--|-D
|-C
--|-E
The result should be: A = 1 and B,C = 2 and D,E = 3
Do I have any hibernate or JPA annotation to do this?
Thanks.