We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DB2 is not supported in this connection pool?
The text was updated successfully, but these errors were encountered:
DB2 should work just fine, have you tried specifying the dataSourceClassName property as com.ibm.db2.jcc.DB2SimpleDataSource?
dataSourceClassName
com.ibm.db2.jcc.DB2SimpleDataSource
For example (using java.util.Properties):
java.util.Properties
dataSourceClassName=com.ibm.db2.jcc.DB2SimpleDataSource dataSource.user=test dataSource.password=test dataSource.databaseName=mydb dataSource.serverName=localhost dataSource.portNumber=50000
Documentation here
Sorry, something went wrong.
The following configuration works for me:
dataSourceClassName = com.ibm.db2.jcc.DB2SimpleDataSource dataSource.user=test dataSource.password=test dataSource.databaseName=mydb dataSource.serverName=localhost dataSource.portNumber=50000 dataSource.currentSchema = DB2INST1 dataSource.driverType = 4
No branches or pull requests
DB2 is not supported in this connection pool?
The text was updated successfully, but these errors were encountered: