DriverConnectionProperties

Besides the user name and password, a JDBC driver might need additional properties or information. The DriverConnectionProperties connector property will take additional properties that a JDBC driver needs, as name-value pairs. The properties should be specified as follows:

property1=value1[;property2=value2...]

The properties must be given as name value pairs, separated by semi-colons. The property is separated from its value by an equal sign (with no extra spaces).

For example, assume the JDBC driver needs license information and port number. The property name it expects for license information is MyLicense and the value is ab23jk5. The property name it expects for port number is PortNumber and value is 1200. The DriverConnectionProperties should be set to the value MyLicense=ab23jk5;PortNumber=1200.

Default value: None

Possible values: Additional JDBC driver connection properties

Required: No

Copyright IBM Corp. 1997, 2004