The JVM Managed Runtime requires that you identify a JDBC URL either as a component of a DataSource object or as a parameter in a connection string.
A JDBC URL identifies the server and the database. These URLs are driver-specific. See the documentation for your JDBC driver for complete details.
Database | URL |
---|---|
DB2 | jdbc:db2://localhost:50000/sample |
Microsoft SQL Server | jdbc:sqlserver://localhost;database=Northwind;integratedSecurity=true; |
Oracle | jdbc:oracle:thin:@localhost:1521/ORCL |