blob: 97ce99d4f3e7aea536a728769580d34d9690c31d [file] [log] [blame]
# 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/ddlutils
datasource.username=postgres
datasource.password=root123
#
# 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