HHH-16511 - Ability to drop-in extra JDBC drivers
(cherry picked from commit 519f0f7ced
)
This commit is contained in:
parent
9ba296ed98
commit
991ea65c7c
|
@ -0,0 +1 @@
|
||||||
|
**/*
|
|
@ -0,0 +1,4 @@
|
||||||
|
== Extra JDBC Drivers
|
||||||
|
|
||||||
|
This directory is a place to drop JDBC drivers (or any test related jars) to be added to the project's
|
||||||
|
`testRuntimeOnly` class-path.
|
|
@ -82,6 +82,15 @@ ext {
|
||||||
'jdbc.url' : 'jdbc:jtds:sybase://' + dbHost + ':5000/hibernate_orm_test;maxStatements=0;cacheMetaData=false',
|
'jdbc.url' : 'jdbc:jtds:sybase://' + dbHost + ':5000/hibernate_orm_test;maxStatements=0;cacheMetaData=false',
|
||||||
'connection.init_sql' : 'set ansinull on'
|
'connection.init_sql' : 'set ansinull on'
|
||||||
],
|
],
|
||||||
|
sybase_jconn_ci : [
|
||||||
|
'db.dialect' : 'org.hibernate.dialect.SybaseASEDialect',
|
||||||
|
'jdbc.driver': 'com.sybase.jdbc4.jdbc.SybDriver',
|
||||||
|
'jdbc.user' : 'hibernate_orm_test',
|
||||||
|
'jdbc.pass' : 'hibernate_orm_test',
|
||||||
|
// Disable prepared statement caching to avoid issues with changing schemas
|
||||||
|
'jdbc.url' : 'jdbc:sybase:Tds:' + dbHost + ':5000/hibernate_orm_test?SQLINITSTRING=set quoted_identifier on&SQLINITSTRING=set ANSINULL on',
|
||||||
|
'connection.init_sql' : ''
|
||||||
|
],
|
||||||
mysql : [
|
mysql : [
|
||||||
'db.dialect' : 'org.hibernate.dialect.MySQLDialect',
|
'db.dialect' : 'org.hibernate.dialect.MySQLDialect',
|
||||||
'jdbc.driver': 'com.mysql.cj.jdbc.Driver',
|
'jdbc.driver': 'com.mysql.cj.jdbc.Driver',
|
||||||
|
|
|
@ -95,6 +95,7 @@ dependencies {
|
||||||
testRuntimeOnly dbLibs.oracleXml
|
testRuntimeOnly dbLibs.oracleXml
|
||||||
testRuntimeOnly dbLibs.oracleXmlParser
|
testRuntimeOnly dbLibs.oracleXmlParser
|
||||||
testRuntimeOnly dbLibs.sybase
|
testRuntimeOnly dbLibs.sybase
|
||||||
|
testRuntimeOnly rootProject.fileTree(dir: 'drivers', include: '*.jar')
|
||||||
|
|
||||||
// Since both the DB2 driver and HANA have a package "net.jpountz" we have to add dependencies conditionally
|
// Since both the DB2 driver and HANA have a package "net.jpountz" we have to add dependencies conditionally
|
||||||
// This is due to the "no split-packages" requirement of Java 9+
|
// This is due to the "no split-packages" requirement of Java 9+
|
||||||
|
|
Loading…
Reference in New Issue