Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.
スクリプトバージョンに基づいて、この接続のプロパティを返します。
Properties DBConnectionContext.getProperties()
この接続のプロパティ
プロパティは、ml_property テーブルに格納されます。詳細については、ml_add_property システムプロシージャを参照してください。
java.util.Properties の詳細については、Java Software Development Kit マニュアルを参照してください。
次の例は、DBConnectionContext のプロパティを出力する方法を示します。この例は、_cc という DBConnectionContext インスタンスがあることを前提としています。
// 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()); }