Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.
スクリプトバージョンに関連する一連のプロパティを返します。
Properties ServerContext.getPropertiesByVersion(String script_version)
script_version 関連するプロパティを返すスクリプトバージョン
指定したスクリプトバージョンに関連する一連のプロパティ
これらは、ml_property システムテーブルに格納されます。component_name が ScriptVersion の場合、スクリプトバージョンは property_set_name カラムに格納されます。詳細については、ml_add_property システムプロシージャを参照してください。
次の例では、指定したスクリプトバージョンに関連付けられた ServerContext インスタンスのすべてのプロパティをリストする方法を示します。
import java.util.*; ServerContext serverContext; PrintStream out Properties prop = serverContext.getPropertiesByVersion("MyScriptVersion"); prop.list(out);