Skip to content

Commit b1fe548

Browse files
committed
update the driver
1 parent 325dc8f commit b1fe548

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

integration-tests/src/test/resources/sitconfig/configoverrides/jdbc-JdbcTestDataSource-0.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
</jdbc:jdbc-connection-pool-params>
1414
<jdbc:jdbc-driver-params>
1515
<jdbc:url jdbcf:combine-mode="replace">JDBC_URL</jdbc:url>
16-
<jdbc:driver-name>oracle.jdbc.OracleDriver</jdbc:driver-name>
16+
<jdbc:driver-name>com.mysql.jdbc.jdbc2.optional.MysqlXADataSource</jdbc:driver-name>
1717
<jdbc:properties>
1818
<jdbc:property>
1919
<jdbc:name>user</jdbc:name>

integration-tests/src/test/resources/sitconfig/scripts/create-domain-auto-custom-sit-config20.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,10 +84,9 @@ def createDataSource(dsName, dsJNDI, dsUrl, dsUser, dsPassword, dsTarget):
8484
cd('/JDBCSystemResource/' + dsName + '/JdbcResource/' + dsName)
8585
create('testDriverParams', 'JDBCDriverParams')
8686
cd('JDBCDriverParams/NO_NAME_0')
87-
set('DriverName', 'oracle.jdbc.OracleDriver')
87+
set('DriverName', 'com.mysql.jdbc.jdbc2.optional.MysqlXADataSource')
8888
set('URL', dsUrl)
8989
set('PasswordEncrypted', dsPassword)
90-
set('UseXADataSourceInterface', 'false')
9190

9291
print 'create JDBCDriverParams Properties'
9392
create('testProperties', 'Properties')

0 commit comments

Comments
 (0)