mirror of
https://github.com/hibernate/hibernate-orm
synced 2025-02-16 16:15:06 +00:00
HHH-9550 - Allow a dialect to specify the level of catalog/schema support
This commit is contained in:
parent
9786409096
commit
c021d12ee2
@ -23,7 +23,7 @@
|
|||||||
#
|
#
|
||||||
hibernate.dialect org.hibernate.dialect.H2Dialect
|
hibernate.dialect org.hibernate.dialect.H2Dialect
|
||||||
hibernate.connection.driver_class org.h2.Driver
|
hibernate.connection.driver_class org.h2.Driver
|
||||||
hibernate.connection.url jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE
|
hibernate.connection.url jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1
|
||||||
hibernate.connection.username sa
|
hibernate.connection.username sa
|
||||||
|
|
||||||
hibernate.connection.pool_size 5
|
hibernate.connection.pool_size 5
|
||||||
|
@ -23,7 +23,7 @@
|
|||||||
#
|
#
|
||||||
hibernate.dialect org.hibernate.dialect.H2Dialect
|
hibernate.dialect org.hibernate.dialect.H2Dialect
|
||||||
hibernate.connection.driver_class org.h2.Driver
|
hibernate.connection.driver_class org.h2.Driver
|
||||||
hibernate.connection.url jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE
|
hibernate.connection.url jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1
|
||||||
hibernate.connection.username sa
|
hibernate.connection.username sa
|
||||||
|
|
||||||
hibernate.connection.pool_size 5
|
hibernate.connection.pool_size 5
|
||||||
|
@ -89,7 +89,7 @@ task copyBundleResources (type: Copy) {
|
|||||||
'jdbc.driver': 'org.h2.Driver',
|
'jdbc.driver': 'org.h2.Driver',
|
||||||
'jdbc.user': 'sa',
|
'jdbc.user': 'sa',
|
||||||
'jdbc.pass': '',
|
'jdbc.pass': '',
|
||||||
'jdbc.url': 'jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE',
|
'jdbc.url': 'jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1',
|
||||||
]);
|
]);
|
||||||
doFirst {
|
doFirst {
|
||||||
bundlesTargetDir.mkdirs()
|
bundlesTargetDir.mkdirs()
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
<property name="hibernate.connection.driver_class">org.h2.Driver</property>
|
<property name="hibernate.connection.driver_class">org.h2.Driver</property>
|
||||||
<property name="hibernate.connection.username">sa</property>
|
<property name="hibernate.connection.username">sa</property>
|
||||||
<property name="hibernate.connection.password"></property>
|
<property name="hibernate.connection.password"></property>
|
||||||
<property name="hibernate.connection.url">jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE</property>
|
<property name="hibernate.connection.url">jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1</property>
|
||||||
<property name="hibernate.cache.use_query_cache">true</property>
|
<property name="hibernate.cache.use_query_cache">true</property>
|
||||||
<property name="hibernate.cache.region_prefix">hibernate.test</property>
|
<property name="hibernate.cache.region_prefix">hibernate.test</property>
|
||||||
<property name="hibernate.jdbc.use_streams_for_binary">true</property>
|
<property name="hibernate.jdbc.use_streams_for_binary">true</property>
|
||||||
|
@ -24,7 +24,7 @@
|
|||||||
|
|
||||||
hibernate.dialect org.hibernate.dialect.H2Dialect
|
hibernate.dialect org.hibernate.dialect.H2Dialect
|
||||||
hibernate.connection.driver_class org.h2.Driver
|
hibernate.connection.driver_class org.h2.Driver
|
||||||
hibernate.connection.url jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE;LOCK_TIMEOUT=10000
|
hibernate.connection.url jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;LOCK_TIMEOUT=10000
|
||||||
hibernate.connection.username sa
|
hibernate.connection.username sa
|
||||||
|
|
||||||
hibernate.connection.pool_size 5
|
hibernate.connection.pool_size 5
|
||||||
|
@ -23,7 +23,7 @@
|
|||||||
#
|
#
|
||||||
hibernate.dialect org.hibernate.dialect.H2Dialect
|
hibernate.dialect org.hibernate.dialect.H2Dialect
|
||||||
hibernate.connection.driver_class org.h2.Driver
|
hibernate.connection.driver_class org.h2.Driver
|
||||||
hibernate.connection.url jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE
|
hibernate.connection.url jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1
|
||||||
hibernate.connection.username sa
|
hibernate.connection.username sa
|
||||||
|
|
||||||
hibernate.connection.pool_size 5
|
hibernate.connection.pool_size 5
|
||||||
|
@ -23,7 +23,7 @@
|
|||||||
#
|
#
|
||||||
hibernate.dialect org.hibernate.dialect.H2Dialect
|
hibernate.dialect org.hibernate.dialect.H2Dialect
|
||||||
hibernate.connection.driver_class org.h2.Driver
|
hibernate.connection.driver_class org.h2.Driver
|
||||||
hibernate.connection.url jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE
|
hibernate.connection.url jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1
|
||||||
hibernate.connection.username sa
|
hibernate.connection.username sa
|
||||||
|
|
||||||
hibernate.jdbc.batch_size 10
|
hibernate.jdbc.batch_size 10
|
||||||
|
@ -23,7 +23,7 @@
|
|||||||
|
|
||||||
hibernate.dialect org.hibernate.dialect.H2Dialect
|
hibernate.dialect org.hibernate.dialect.H2Dialect
|
||||||
hibernate.connection.driver_class org.h2.Driver
|
hibernate.connection.driver_class org.h2.Driver
|
||||||
hibernate.connection.url jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE
|
hibernate.connection.url jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1
|
||||||
hibernate.connection.username sa
|
hibernate.connection.username sa
|
||||||
|
|
||||||
hibernate.connection.pool_size 5
|
hibernate.connection.pool_size 5
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
<property name="hibernate.connection.driver_class">org.h2.Driver</property>
|
<property name="hibernate.connection.driver_class">org.h2.Driver</property>
|
||||||
<property name="hibernate.connection.username">sa</property>
|
<property name="hibernate.connection.username">sa</property>
|
||||||
<property name="hibernate.connection.password"></property>
|
<property name="hibernate.connection.password"></property>
|
||||||
<property name="hibernate.connection.url">jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE</property>
|
<property name="hibernate.connection.url">jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1</property>
|
||||||
<property name="hibernate.hbm2ddl.auto">create-drop</property>
|
<property name="hibernate.hbm2ddl.auto">create-drop</property>
|
||||||
<property name="hibernate.cache.use_second_level_cache">false</property>
|
<property name="hibernate.cache.use_second_level_cache">false</property>
|
||||||
<mapping class="org.hibernate.osgi.test.client.DataPoint"/>
|
<mapping class="org.hibernate.osgi.test.client.DataPoint"/>
|
||||||
|
@ -23,7 +23,7 @@
|
|||||||
#
|
#
|
||||||
hibernate.dialect org.hibernate.dialect.H2Dialect
|
hibernate.dialect org.hibernate.dialect.H2Dialect
|
||||||
hibernate.connection.driver_class org.h2.Driver
|
hibernate.connection.driver_class org.h2.Driver
|
||||||
hibernate.connection.url jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE
|
hibernate.connection.url jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1
|
||||||
hibernate.connection.username sa
|
hibernate.connection.username sa
|
||||||
|
|
||||||
hibernate.connection.pool_size 5
|
hibernate.connection.pool_size 5
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
jdbc-0.proxool.alias=pool-one
|
jdbc-0.proxool.alias=pool-one
|
||||||
jdbc-0.proxool.driver-url=jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE
|
jdbc-0.proxool.driver-url=jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1
|
||||||
jdbc-0.proxool.driver-class=org.h2.Driver
|
jdbc-0.proxool.driver-class=org.h2.Driver
|
||||||
jdbc-0.user=sa
|
jdbc-0.user=sa
|
||||||
jdbc-0.password=
|
jdbc-0.password=
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
jdbc-0.proxool.alias=pool-two
|
jdbc-0.proxool.alias=pool-two
|
||||||
jdbc-0.proxool.driver-url=jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE
|
jdbc-0.proxool.driver-url=jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1
|
||||||
jdbc-0.proxool.driver-class=org.h2.Driver
|
jdbc-0.proxool.driver-class=org.h2.Driver
|
||||||
jdbc-0.user=sa
|
jdbc-0.user=sa
|
||||||
jdbc-0.password=
|
jdbc-0.password=
|
||||||
|
Loading…
x
Reference in New Issue
Block a user