Connection URLs for Type 2 JDBC Driver
This driver connects ("bridges") JDBC client applications to UDBC Data Source Names (DSNs).
 The URL format is as follows: 
          
        
jdbc:openlink://UDBC/DSN=dsn[/UID=uid][/PWD=pwd][/READONLY=y]
URL Attributes
-  /DSN -- UDBC Data Source Name 
 -  /UID -- Username 
 -  /PWD -- Password 
 - /READONLY -- Determines session mode, read-write (=N) or read-only (=Y).
 
Example
To connect to a UDBC DSN on your machine named "CustomerDatabase" in read-only mode, you could use the following JDBC URL: 
          
        
jdbc:openlink://UDBC/DSN=CustomerDatabase/UID=test/PWD=test/READONLY=Y