Class HibernateOrmConfigPersistenceUnit.HibernateOrmConfigPersistenceUnitJdbc
- java.lang.Object
-
- io.quarkus.hibernate.orm.deployment.HibernateOrmConfigPersistenceUnit.HibernateOrmConfigPersistenceUnitJdbc
-
- Enclosing class:
- HibernateOrmConfigPersistenceUnit
public static class HibernateOrmConfigPersistenceUnit.HibernateOrmConfigPersistenceUnitJdbc extends Object
-
-
Field Summary
Fields Modifier and Type Field Description OptionalIntstatementBatchSizeThe number of updates (inserts, updates and deletes) that are sent by the JDBC driver at one time for execution.OptionalIntstatementFetchSizeHow many rows are fetched at a time by the JDBC driver.Optional<String>timezoneThe time zone pushed to the JDBC driver.
-
Constructor Summary
Constructors Constructor Description HibernateOrmConfigPersistenceUnitJdbc()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanisAnyPropertySet()
-
-
-
Field Detail
-
timezone
@ConfigItem @ConvertWith(io.quarkus.runtime.configuration.TrimmedStringConverter.class) public Optional<String> timezone
The time zone pushed to the JDBC driver. See `quarkus.hibernate-orm.mapping.timezone.default-storage`.
-
statementFetchSize
@ConfigItem public OptionalInt statementFetchSize
How many rows are fetched at a time by the JDBC driver.
-
statementBatchSize
@ConfigItem public OptionalInt statementBatchSize
The number of updates (inserts, updates and deletes) that are sent by the JDBC driver at one time for execution.
-
-