Quick Start for Linux > Quick Start Guide > Connecting to Actian X Using JDBC
Was this helpful?
Connecting to Actian X Using JDBC
JDBC Connection URL
JDBC Connection URL has the following format:
jdbc:ingres://<hostname>:<port>/<database>;UID=<user>;PWD=<password>
where:
jdbc:ingres:// 
Connects using the JDBC driver
hostname 
localhost or the name of the computer you are connecting to
port 
The port to connect to (three characters: the Actian X instance ID and the digit 7, for example: II7)
database 
The name of the database you want to access
user 
The user name to connect as
Note:  User ID and password are optional when connecting to a local Data Access Server and the current operating system logged-in user is also a valid Actian X user.
password 
The password
Example JDBC connection strings:
Local installation: jdbc:ingres://localhost:II7/testdb
Remote installation: jdbc:ingres://<hostname>:II7/testdb;UID=userid;PWD=password
For details see DriverManager.getConnection method in the Connectivity Guide.
Last modified date: 12/14/2023