Why do I need to configure the SQL dialect of a data source?

前端 未结 11 2161
陌清茗
陌清茗 2020-11-27 13:17

When we configure a data source using Hibernate, we should add the hibernate.dialect property (or eclipselink.target-database if you are using Ecli

11条回答
  •  孤街浪徒
    2020-11-27 14:06

    The dialect in the Hibernate context, will take care of database data type, like in orace it is integer however in SQL it is int, so this will by known in hibernate by this property, how to map the fields internally.

提交回复
热议问题