Installing and setting up the driver
- Last Updated: May 13, 2025
- 2 minute read
- DataDirect Connectors
- JDBC
- Atlassian Jira 6.0
- Documentation
This section provides you with an overview of the steps required to install and set-up the driver. After completing this procedure, you will be able to begin accessing data with your application.
To begin accessing data with the driver:
-
Install the driver:
- After downloading the product, unzip the installer files to a temporary directory.
-
From the installer directory, run the appropriate
installer file to start the installer.
- Windows: PROGRESS_DATADIRECT_JDBC_INSTALL.exe
- Non-Windows: PROGRESS_DATADIRECT_JDBC_INSTALL.jar
- Follow the prompts to complete installation.
The installer program supports multiple installation methods, including command-line and silent installations. For detailed instructions, refer to the Progress DataDirect for JDBC Drivers Installation Guide.
-
Set your system CLASSPATH to include the driver
.jar file. The CLASSPATH is the search string your
Java Virtual Machine (JVM) uses to locate JDBC drivers on your computer. The following
examples demonstrate setting the CLASSPATH from a command line using the default
installation directory.
-
Windows Example
CLASSPATH=.;C:\Program Files\Progress\DataDirect\JDBC\lib\60\jira.jar -
UNIX/LINUX Example
CLASSPATH=.:/opt/Progress/DataDirect/JDBC/lib/60/jira.jar
-
-
Configure your driver using one of the following
methods:
-
Connection URL: You can begin using the driver immediately by passing a connection URL with your application or tool. The following example demonstrates the minimal connection properties required to connect.
jdbc:datadirect:jira:http://mycompany.atlassian.net;User=jsmith;Password=secret;Note: The User and Password properties can also be passed separately from the connection URL, such as your application's logon dialog. - Data sources: The driver also supports connecting using JDBC data sources. A JDBC data source is a Java object, specifically a DataSource object, that defines connection information required for a JDBC driver to connect to the database. See Connecting using data sources for more information.
Note: For most connections, specifying the minimum required connection properties is sufficient to begin accessing data; however, you can provide values for optional properties to use additional supported features and improve performance. -
-
Set the values for any optional properties that you want
to configure. For additional information on optional features and functionality, see the
following resources:
- Connection property descriptions provides a complete list of supported properties by functionality.
- Performance considerations describes connection properties that affect performance, along with recommended settings.
-
Connect to your service and begin accessing data with your applications, BI tools,
database tools, and more. To help you get started, the following resources guide you
through the processes for testing
DriverManagerand data source connections, and the SQL statements supported by the driver.- Testing a DriverManager connection: This section discusses how to establish and test a
DriverManagerconnection using DataDirect Test. - Testing a data source connection: This section discusses how to establish and test a data source connection using DataDirect Test.
- Supported SQL statements and extensions: This section describes the syntax used for SQL statements supported by the driver. You can modify and use the provided examples for your application or tool.
- Testing a DriverManager connection: This section discusses how to establish and test a
This completes the deployment of the driver.