UCanAccess Hibernate dialect Wiki
A Hibernate Dialect implementation for the UCanAccess JDBC driver
Brought to you by:
gordonthompson
In hibernate.cfg.xml use the "globally_quoted_identifiers" property, e.g.,
<property name="dialect">net.ucanaccess.hibernate.dialect.UCanAccessDialect</property>
<property name="globally_quoted_identifiers">true</property>
@Lob
private String comments;
// auto-created columns will be DECIMAL() instead of CURRENCY
@Column(precision = 19, scale = 4) // required, otherwise defaults to (19,2)
private BigDecimal fee;