The following example shows you how to output the properties for a DBConnectionContext. This example assumes you have a DBConnectionContext instance named _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());
}