I am trying Mule's Database Connector to connect to a DB2 database but I couldn't figure out the correct format for the database URL. I created a Generic Database Configuration global element with Database URL
jdbc:db2://db01.dev.myserver.org:50000/mydb;User=test;Password=secret
And Driver
com.ibm.db2.jcc.DB2Driver
When I click Test Connection, it says
Test connection failed: Cannot get connection for URL
jdbc:db2://db01.dev.myserver.org:50000/mydb;User=test;Password=secret :
[ibm][db2][jcc][t4][10205][11234] Null userid is not supported.
How shall I put the username and password in the URL?
Thanks!