Using the Driver
:
Connecting from an application
:
Connecting using the JDBC Driver Manager
Try DataDirect Drivers Now
Connecting using the JDBC Driver Manager
One way to connect to a Jira service is through the JDBC DriverManager using the
DriverManager.getConnection()
method. As the following example shows, this method specifies a string containing a connection URL.
Connection conn = DriverManager.getConnection
("jdbc:datadirect:jira:https://mycompany.atlassian.net;User=jsmith;Password=secret;");
In this section:
Passing the connection URL
Testing the connection