blob: a7960532cff5c3b5b7b3265431021c9527b901c0 [file] [log] [blame]
# JDBC properties for MySQL using Connector/J
# 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=MySql
#
# Using the plain DBCP datasource
#
datasource.class=org.apache.commons.dbcp.BasicDataSource
datasource.driverClassName=com.mysql.jdbc.Driver
datasource.url=jdbc:mysql://localhost/ddlutils
datasource.username=root
datasource.password=
# We want to test against InnoDB tables (so that we get e.g. foreign keys)
ddlutils.tableCreation.ENGINE=InnoDB