-
Notifications
You must be signed in to change notification settings - Fork 3
/
database.properties
20 lines (20 loc) · 1 KB
/
database.properties
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
postgresql.datasource.url=jdbc:postgresql://localhost:5432/jira
postgresql.datasource.driver.class.name=org.postgresql.Driver
postgresql.datasource.schema=<schema, if any>
postgresql.datasource.username=<username>
postgresql.datasource.password=<password>
oracle.datasource.url=jdbc:oracle:thin:@localhost:1521:ORCLCDB
oracle.datasource.driver.class.name=oracle.jdbc.driver.OracleDriver
oracle.datasource.schema=<schema, if any>
oracle.datasource.username=<username>
oracle.datasource.password=<password>
mssql.datasource.url=jdbc:sqlserver://localhost:1433;databaseName=jira;trustServerCertificate=true;
mssql.datasource.driver.class.name=com.microsoft.sqlserver.jdbc.SQLServerDriver
mssql.datasource.schema=<schema, if any>
mssql.datasource.username=<username>
mssql.datasource.password=<password>
mysql.datasource.url=jdbc:mysql://localhost:3306/jira
mysql.datasource.driver.class.name=com.mysql.cj.jdbc.Driver
mysql.datasource.schema=<schema, if any>
mysql.datasource.username=<username>
mysql.datasource.password=<password>