Google News
logo
Java Hibernates - Interview Questions
What is the dialect in hibernate?
For connecting hibernate application with database then we must specify the SQLDialect, which contain the mapping between java language data type and database datatypes. There are many dialect classes for defining the RDBMS.
 
Hibernate uses dialect configuration to know which database you are using so that, it can switch to the database-specific SQL generator. Hibernate generates all your entity mappings and hibernate queries to Specific database query and uses JDBC to execute them.
Advertisement