I am using struts2 , hibernate and MySql for my project. I have table name TimeTable having 42 columns (all long datatype) containing course codes. I want to search "column names" having particular course code from a particular row. Help me please.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
If you have mapped the entity in a "proper" way in hibernate, the answer is obvious: You will have an entity called TimeTable, which have 42 relationships to Course (I bet the attribute name will be course1, course2.... course42). The resulting HQL is simply a bunch of OR
However, it is obviously a bad model design. You should make Timetable and Course a Many-To-Many relationship, and have another table storing the relationship. So, in the entity, you will see something like
Your life will be much easier with such design. |
|||||||
|