URL

Description

The location of the database to which you want to connect using the JDBC interface.

NoteWhen to specify URL You must specify the URL parameter before connecting to the database.

Applies to

Syntax

URL='URL_address'

Default

None

Usage

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

Examples

Example 1

To set the URL to a database accessed through jConnect:

Example 2

To set the URL to a database accessed through the Oracle JDBC driver:

Example 3

To set the URL, which includes the user ID and password, to a database accessed through the Oracle JDBC driver:

See also