Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3
Platform 4.5+ が必要

...

要素
タイプ
説明
driver
属性
この接続で使用する driver クラスを指定します。
id
属性
この接続を識別するための ID を指定します。
url
属性
この接続でアクセスするデータベースへの URL。jdbc:subprotocol:subname の形式で指定されます。
properties
子要素
この接続のプロパティのリストを指定します。
子要素:
プロパティ - そのプロパティについてプロパティの名前と値を指定します。

例:
 
Code Block
<connectionDefinition id="engineering" driver="com.mysql.jdbc.Driver" url="jdbc:mysql://dgnc/engineering">
  <properties>
    <property name="user">Ron</property>
    <property name="password">77$Lo</property>
  </properties>
</connectionDefinition>

...