From 952bf6f9c0f85b30ba7fe6345bad581959f5d7e8 Mon Sep 17 00:00:00 2001 From: Elena Felder <41136058+elefeint@users.noreply.github.com> Date: Tue, 28 May 2019 12:49:33 -0400 Subject: [PATCH] HHH-13412 Added link for predefined properties, warning that not all settings apply to all situations --- .../asciidoc/userguide/chapters/jdbc/Database_Access.adoc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/documentation/src/main/asciidoc/userguide/chapters/jdbc/Database_Access.adoc b/documentation/src/main/asciidoc/userguide/chapters/jdbc/Database_Access.adoc index 5be8b9baae..190c9b23e5 100644 --- a/documentation/src/main/asciidoc/userguide/chapters/jdbc/Database_Access.adoc +++ b/documentation/src/main/asciidoc/userguide/chapters/jdbc/Database_Access.adoc @@ -43,7 +43,9 @@ Otherwise, the no-arg form is used. === Driver Configuration `hibernate.connection.driver_class`:: The name of the JDBC Driver class to use `hibernate.connection.url`:: The JDBC connection url -Any settings prefixed with `hibernate.connection.` (other than the "special ones"):: All such setting names 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 +`hibernate.connection.*`:: All such setting names (except the <>) 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 + +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. [[database-connectionprovider-c3p0]] === Using c3p0