public Iterator getPropertySetNames( java.lang.String component_name )
Returns the list of property set names for a given component. These are stored in the MobiLink system table ml_property.
component_name The name of the component for which to list property names.
The list of property set names for the given component.
The following code lists all the ServerContext's Properties associated with a given component.
import java.util.*; // ServerContext serverContext; // PrintStream out Properties prop = serverContext.getPropertySetNames("Component Name"); prop.list(out); |
Discuss this page in DocCommentXchange. Send feedback about this page using email. |
Copyright © 2009, iAnywhere Solutions, Inc. - SQL Anywhere 11.0.1 |