The following example shows you how to output the properties for a DBConnectionContext.
Note
This example assumes you have a DBConnectionContext instance called _cc.
// The method used to output the connection properties.
public void outputProperties() {
// output the Properties for the current synchronization
java.util.Properties properties = _cc.getProperties();
System.out.println(properties.toString());
}