dbtype | The type of database:
MSSQL if you have a Microsoft SQL Server database
ORACLESQL if you have an Oracle database
|
dbpoolsize | The size of the database connection pool. Only modify this value if the default value as specified in the configuration file does not work in your setup. |
dbretryattempts | The number of times a connection should be retried in the event of a failure to connect. "5" would be a good value for this attribute. |
dbclass | The Java class for the data source:
- com.microsoft.sqlserver.jdbc.SQLServerDataSource if you have a Microsoft SQL Server database
- oracle.jdbc.pool.OracleDataSource if you have an Oracle database
|
dbhost | The host name of the database server. Oracle users: the attribute is called serverName, but Oracle calls this setting HOST in, for example, its tnsnames.ora file. |
dbport | The port number of the database server. |
dbname | The name of the database. Oracle users: the attribute is called databaseName, but Oracle calls this setting SERVICE_NAME in, for example, its tnsnames.ora file. |
dbuser | The name of a user who can access the database. Oracle users: Oracle also uses the word "schema" to refer to the user name. |
dbpassword | The (encrypted) password of the user who can access the database. |
dbencrypt | Microsoft SQL Server users: Encrypt the connection to the database if this property is set to true. Defaults to false. |