Hibernate (Java) Question:
What is object/relational mapping metadata?
Answer:
ORM tools require a metadata format for the application to specify the mapping between classes and tables, properties and columns, associations and foreign keys, Java types and SQL types. This information is called the object/relational mapping metadata. It defines the transformation between the different data type systems and relationship representations.
Previous Question | Next Question |
What are POJOs? | What is HQL? |