Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

with password

Code Block
syncope

.

MySQL

Code Block
jpa.driverClassName=com.mysql.jdbc.Driver
jpa.url=jdbc:mysql://localhost:3306/syncope?characterEncoding=UTF-8
jpa.username=syncope
jpa.password=syncope
jpa.dialect=org.apache.openjpa.jdbc.sql.MySQLDictionary
quartz.jobstore=org.quartz.impl.jdbcjobstore.StdJDBCDelegate
quartz.sql=tables_mysql_innodb.sql
logback.sql=mysql.sql

...

with password

Code Block
syncope

...

Oracle

Code Block
jpa.driverClassName=oracle.jdbc.OracleDriver
jpa.url=jdbc:oracle:thin:@localhost:1521:orcl
jpa.username=syncope
jpa.password=syncope
jpa.dialect=org.apache.openjpa.jdbc.sql.OracleDictionary
quartz.jobstore=org.quartz.impl.jdbcjobstore.oracle.OracleDelegate
quartz.sql=tables_oracle.sql
logback.sql=oracle.sql
database.schema=SYNCOPE

...

with password

Code Block
syncope

...

You will also need to

  1. create directory
    Code Block
    core/src/main/resources/META-INF
  2. download Oracle mapping file, rename it to
    Code Block
    orm.xml
    and copy it under the directory created above

...

with password

Code Block
syncope

...

You will also need to

  1. create directory
    Code Block
    core/src/main/resources/META-INF
  2. download SQL Server mapping file, rename it to
    Code Block
    orm.xml
    and copy it under the directory created above

...