You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As you can see, both the table name and all the column have been quoted.
2427
2427
2428
-
For more about quoting-related configuration properties, check out the <<appendices/Configurations.adoc#configurations-mapping,Mapping configurations>> section as well.
2428
+
For more about quoting-related configuration properties, check out the <<appendices/SettingsReference.adoc#settings-mapping,Mapping configurations>> section as well.
Copy file name to clipboardExpand all lines: documentation/src/main/asciidoc/userguide/chapters/jdbc/Database_Access.adoc
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -42,7 +42,7 @@ Otherwise, the no-arg form is used.
42
42
=== Driver Configuration
43
43
`hibernate.connection.driver_class`:: The name of the JDBC Driver class to use
44
44
`hibernate.connection.url`:: The JDBC connection url
45
-
`hibernate.connection.*`:: All such setting names (except the <<appendices/Configurations.adoc#configurations-database-connection,predefined ones>>) will have the `hibernate.connection.` prefix stripped. The remaining name and the original value will be passed to the driver as a JDBC connection property
45
+
`hibernate.connection.*`:: All such setting names (except the <<appendices/SettingsReference.adoc#settings-hibernate.connection,predefined ones>>) will have the `hibernate.connection.` prefix stripped. The remaining name and the original value will be passed to the driver as a JDBC connection property
46
46
47
47
NOTE: Not all properties apply to all situations. For example, if you are providing a data source, `hibernate.connection.driver_class` setting will not be used.
48
48
@@ -155,7 +155,7 @@ The `Connection` will be acquired as soon as it is needed and will be released a
155
155
The `Connection` will be acquired as soon as it is needed and will be released after each transaction is completed.
156
156
157
157
If you don't want to use the default connection handling mode, you can specify a connection handling mode via the `hibernate.connection.handling_mode` configuration property. For more details, check out the
@@ -206,4 +206,4 @@ Hibernate abstracts over variations between dialects of SQL via the class `org.h
206
206
- Additional community-supported ``Dialect``s are available in the separate module `hibernate-community-dialects`.
207
207
208
208
In Hibernate 6, it's no longer necessary to explicitly specify a dialect using the configuration property `hibernate.dialect`, and so setting that property is now discouraged.
209
-
(An exception is the case of custom user-written ``Dialect``s.)
209
+
(An exception is the case of custom user-written ``Dialect``s.)
Copy file name to clipboardExpand all lines: documentation/src/main/asciidoc/userguide/chapters/pc/PersistenceContext.adoc
-4Lines changed: 0 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1409,8 +1409,4 @@ Starting with Hibernate 5.2, the Hibernate `Session` extends the Jakarta Persist
1409
1409
the `HibernateException` or `SQLException` can be wrapped in a Jakarta Persistence {jpaJavadocUrlPrefix}PersistenceException.html[`PersistenceException`] when thrown
1410
1410
by `Session` methods that implement `EntityManager` methods (e.g., https://docs.jboss.org/hibernate/orm/{majorMinorVersion}/javadocs/org/hibernate/Session.html#merge-java.lang.Object-[Session.merge(Object object)],
If your `SessionFactory` is built via Hibernate's native bootstrapping, and you don't want the Hibernate exceptions to be wrapped in the Jakarta Persistence `PersistenceException`, you need to set the
1414
-
`hibernate.native_exception_handling_51_compliance` configuration property to `true`. See the
1415
-
<<appendices/Configurations.adoc#configurations-exception-handling,`hibernate.native_exception_handling_51_compliance`>> configuration property for more details.
Copy file name to clipboardExpand all lines: documentation/src/main/asciidoc/userguide/chapters/schema/Schema.adoc
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,7 @@ it's much more flexible to manage the schema using incremental migration scripts
15
15
====
16
16
17
17
Traditionally, the process of generating schema from entity mapping has been called `HBM2DDL`.
18
-
To get a list of Hibernate-native and Jakarta Persistence-specific configuration properties consider reading the <<appendices/Configurations.adoc#configurations-hbmddl,Configurations>> section.
18
+
To get a list of Hibernate-native and Jakarta Persistence-specific configuration properties consider reading the <<appendices/SettingsReference.adoc#settings-schema,Configurations>> section.
0 commit comments