I have a question about Hibernate.
I want to connect to a database and get informations about the tables (all its columns and its metadata - datatype, collation, index, description, key etc.) while runtime using java.
I have no access to this database while developing. The java application will be installed in other companies not knowing they're databases. Is it possible using Hibernate to achieve this goal?
I cannot create an mapping in xml or use annotations, because i do not know the schemas/tables/columns.
In other words perhaps: Is it possible to create xml mapping while application runtime? Create objects out of this xml files and read properties from the created objects while runtime?
I hope this question is clearer now.