
Import data from a database into Insight.
次のようなユース ケースがあり得ます。
These are the module type specific fields that need to be configured for this import type. All of these fields are mandatory.
|
設定 | 説明 | |
|---|---|---|
URL | The database connection URL | |
| ドライバー | データベースへの接続に使用するドライバー クラス。 JDBC ドライバー (*.jar) を <Jira_INSTALL>/lib フォルダーに配置します。 lib フォルダーにドライバーを追加後、Jira を必ず再起動してください。 | |
ユーザ名 | The username used to authenticate | |
パスワード | The password used to authenticate
|
If you want to query the Jira database, you can look into the dbconfig.xml found in Jira_HOME directory, to find out the correct configuration. |
| 名前 | 説明 | |||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| セレクター | データベース インポートのセレクターは SQL クエリです。SQL クエリの構築方法は、データベース タイプによって異なります。 セレクター (SQL 文) の構築方法は、データベース接続の設定方法によって異なります。次に、セットアップ時にこれを正しく設定するガイドとなる例をいくつか示します。
|
There are no predefined structure and configuration implemented for the Database type
We are using a common framework (jdbc) to connect to the database so we support many database types such as:
| データベースタイプ | ドライバー |
|---|---|
Microsoft SQL Server | before Jira 7.5 net.sourceforge.jtds.jdbc.Driver after Jira 7.5 com.microsoft.sqlserver.jdbc.SQLServerDriver |
Oracle | oracle.jdbc.OracleDriver |
PostgreSQL | org.postgresql.Driver |
MySQL | com.mysql.jdbc.Driver |
If you want to connect to the Jira database, you can look into the dbconfig.xml in Jira_HOME to find the correct configuration and URL
Here are some examples of URL configurations for different database types:
| データベースタイプ | URL |
|---|---|
Microsoft SQL Server | before Jira 7.5 jdbc:jtds:sqlserver://localhost:41972/Jiradb after Jira 7.5 jdbc:sqlserver://localhost:1433;databaseName=Jiradb |
Oracle | jdbc:oracle:thin:@//localhost:1521/ORCL |
PostgreSQL | |
MySQL |
Connection URL with domain for AD authentication:
URL: jdbc:jtds:sqlserver://10.10.1.1:1433/DB;domain=example.com
Driver: net.sourceforge.jtds.jdbc.Driver