boolean « Default « JPA Q&A





1. What does Hibernate map a boolean datatype to when using an Oracle database by default?    stackoverflow.com

By default if I create a field in an entity like:

@NotNull
boolean myBoolean;
And I let Hibernate auto-create my tables. What Oracle data type will this map to?