38 lines
1.1 KiB
Plaintext
38 lines
1.1 KiB
Plaintext
# JDBC properties for PostgreSQL
|
|
# Note: Properties starting with "datasource." will be fed into the datasource instance of the
|
|
# class configured via the datasource.class property
|
|
|
|
# Use this property if ddlutils does not recognize the platform from the settings
|
|
ddlutils.platform=PostgreSQL
|
|
|
|
#
|
|
# Using the plain DBCP datasource
|
|
#
|
|
|
|
datasource.class=org.apache.commons.dbcp.BasicDataSource
|
|
datasource.driverClassName=org.postgresql.Driver
|
|
datasource.url=jdbc:postgresql://localhost:5432/adempiere
|
|
datasource.username=adempiere
|
|
datasource.password=adempiere
|
|
|
|
#
|
|
# PostgreSQL comes with its own DataSource implementations which can be configured like this:
|
|
#
|
|
|
|
#datasource.class=org.postgresql.ds.PGSimpleDataSource
|
|
# or this one for pooling:
|
|
#datasource.class=org.postgresql.ds.PGPoolingDataSource
|
|
|
|
#datasource.serverName=localhost
|
|
#datasource.databaseName=ddlutils
|
|
#datasource.user=
|
|
#datasource.password=
|
|
|
|
# additional properties for the pooling datasource:
|
|
#datasource.dataSourceName=pooling datasource
|
|
#datasource.initialConnections=5
|
|
|
|
#datasource.maxConnections=20
|
|
|
|
ddlutils.schema=adempiere
|