float « Schema « JPA Q&A





1. What are the best workarounds for known problems with Hibernate's schema validation of floating point columns when using Oracle 10g?    stackoverflow.com

I have several Java classes with double fields that I am persisting via Hibernate. For example, I have

@Entity
public class Node ...

  private double value;
When Hibernate's org.hibernate.dialect.Oracle10gDialect creates the DDL ...