public java.util.Properties getPropertiesByVersion( java.lang.String script_version )
Returns the set of properties associated with the script version. These are stored in the MobiLink system table ml_property. The script version is stored in the property_set_name column when the component_name is ScriptVersion.
script_version The script version for which to return associated properties.
The set of properties associated with the given script version.
The following code lists all the ServerContext's Properties associated with a given script version.
include java.util.*; // ServerContext serverContext; // PrintStream out Properties properties = serverContext.getPropertiesByVersion( "MyScriptVersion"); Properties.list(out); |
Send feedback about this page via email or DocCommentXchange | Copyright © 2008, iAnywhere Solutions, Inc. - SQL Anywhere 11.0.0 |