Other databases

The following examples demonstrate how to configure a connection to Microsoft SQL Server and Oracle Database 11g. Username and password fields are omitted for brevity. These fields are part of the platform installation guides.

Microsoft SQL Server with default instance

relution:
  database:
    type: mssql
    url: 'jdbc:sqlserver://localhost:1433;databaseName=relution'

Microsoft SQL Server with custom instance

relution:
  database:
    type: mssql
    url: 'jdbc:sqlserver://localhost\<INSTANCE>:1433;databaseName=relution'

Oracle 11g with SID

relution:
  database:
    type: oracle
    url: 'jdbc:oracle:thin:@localhost:1521:<SID>'

Oracle 11g with service name

relution:
  database:
    type: oracle
    url: 'jdbc:oracle:thin:@//localhost:1521/<SERVICE_NAME>'