public java.util.Properties getProperties( )
Returns the properties for this connection, based on this connection's script version. Properties are stored in the ml_property table.
Consult your Java SDK documentation for more information about java.util.Properties.
The properties for this connection.
The following example shows you how to output the properties for a DBConnectionContext.
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()); } |
Discuss this page in DocCommentXchange. Send feedback about this page using email. |
Copyright © 2009, iAnywhere Solutions, Inc. - SQL Anywhere 11.0.1 |