I am working on a web application. We are using Hibernate as ORM in our project. Actually, our application creates some tables dynamically based on user selection.For Example,if the user creates a form by name Student,and adds its attributes like name,roll no,subject,class etc.. then on runtime,there should be a table created by name student with columns name,roll no,subject,class and also its related class and its hibernate mapping file. Is there any way of doing so?
Thanks in advance, Mahalaxmi