The location of the database to which you want to connect using the JDBC interface.
JDB JDBC
URL='URL_address'
None
The database URL is obtained from the database JDBC driver documentation. A list of registered Driver classes, with their URLs, is maintained by the driver’s JDBC DriverManager class. When a connection request is made, the DriverManager attempts to locate a suitable driver from those listed.
The URL uses this general format:
jdbc:vendor:driverprotocol:servername:port/database
Argument |
Description |
---|---|
jdbc |
Driver |
vendor |
Database vendor (such as Sybase or Oracle) |
driverprotocol |
Database communications protocol |
servername |
DNS machine name or database host name |
port |
TCP/IP port number configured for accessing the database server |
database |
(optional) Name of a specific database |
The database URL can also include the user ID and password as follows:
jdbc:vendor:driverprotocol:userid/password@servername:port:database
To set the URL to a database accessed through jConnect:
Database profile Type the following in the URL box on the Connection page in the Database Profile Setup dialog box:
jdbc:sybase:Tds:199.93.178.151:5007/tsdata
Application Type the following in code:
SQLCA.DBParm="URL='jdbc:sybase:Tds:199.93.178.151:5007/tsdata'"
To set the URL to a database accessed through the Oracle JDBC driver:
Database profile Type the following in the URL box on the Connection page in the Database Profile Setup dialog box:
jdbc:oracle:thin:@ora80nt:1521:orcl
Application Type the following in code:
SQLCA.DBParm="URL='jdbc:oracle:thin:@ora80nt:1521:orcl'"
To set the URL, which includes the user ID and password, to a database accessed through the Oracle JDBC driver:
Database profile Type the following in the URL box on the Connection page in the Database Profile Setup dialog box:
jdbc:oracle:thin:system/manager@ora80nt:1521:orcl
Application Type the following in code:
SQLCA.DBParm="URL='jdbc:oracle:thin:system/manager@ora80nt:1521:orcl'"