close

Filter

loading table of contents...

Search Manual / Version 2010

Table Of Contents

5.2.2 Configuring the Database

The CAE Feeder persists the feeding state in a database. Configure the connection to the database with the following properties:

jdbc.driver
Specifies the class of the database driver
jdbc.url
Contains the URL of the database
jdbc.user
Specifies the account name of the database user
jdbc.login-user-name
Specifies the login name of the database user. Defaults to jdbc.user. In some cases the login username differs from the actual user, for example, with PostgreSQL on Azure a postfix on the user name is necessary to log in. Set this property additionally to jdbc.user.
jdbc.password
Specifies the account password of the database user

For example:

jdbc.driver=oracle.jdbc.driver.OracleDriver
jdbc.url=jdbc:oracle:thin:@localhost:1521:oracle
jdbc.user=username
jdbc.password=password

# Additional property for PostgreSQL on Azure
#jdbc.login-user-name=username@domain

Example 5.2. Configure the database


Note

Note

To avoid performance problems with Microsoft SQL Server, it is recommended to set the connection property sendStringParametersAsUnicode=false as part of the configured jdbc.url, for example: jdbc:sqlserver://localhost:1433;databaseName=cm_mcaefeeder;sendStringParametersAsUnicode=false. For more details, see the Microsoft SQL Server documentation.

Caution

Caution

Do not run multiple CAE Feeder applications on the same database schema.

Search Results

Table Of Contents