2006-12-17 22:41:06 +07:00
|
|
|
# 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/adempiere
|
|
|
|
datasource.username=adempiere
|
|
|
|
datasource.password=adempiere1
|
|
|
|
|
|
|
|
#
|
|
|
|
# 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
|
2006-12-28 16:17:57 +07:00
|
|
|
#datasource.maxConnections=20
|
|
|
|
|
|
|
|
ddlutils.schema=adempiere
|