I'm trying to develop an app that manages some surveys
from limeSurvey
and for this purpose I'm using Hibernate
. So the whole problem is that limeSurvey
gives me the answers of every survey
like this:
lime_survey_id(Table)
Where each id
is relative to a specific survey
.
All I wanted was to get the list of all responses of all surveys
using hibernate
. The problem is: How do I do this? I have list all of the ids in another table.
Ps¹: I'm using Spring
too. Ps2: I'm using EntityManager
to handle the tables. Ps3: I'm really a newbie / inexperienced. Ps4: Actually I thought of another way of solving my problem (Turning all the tables that limeSurvey
gives me into a single table, but I think that would be much more difficult.)