You are viewing a plain text version of this content. The canonical link for it is here.
Posted to ddlutils-dev@db.apache.org by mv...@apache.org on 2006/01/03 20:13:57 UTC

svn commit: r365716 - in /db/ddlutils/trunk/src/test-profiles: ./ mvdb/ mvdb/jdbc.properties.axion mvdb/jdbc.properties.derby mvdb/jdbc.properties.hsqldb mvdb/jdbc.properties.mckoi mvdb/jdbc.properties.postgresql

Author: mvdb
Date: Tue Jan  3 11:13:52 2006
New Revision: 365716

URL: http://svn.apache.org/viewcvs?rev=365716&view=rev
Log:
My test profiles (just copies of the original for now).

Added:
    db/ddlutils/trunk/src/test-profiles/
    db/ddlutils/trunk/src/test-profiles/mvdb/
    db/ddlutils/trunk/src/test-profiles/mvdb/jdbc.properties.axion
    db/ddlutils/trunk/src/test-profiles/mvdb/jdbc.properties.derby
    db/ddlutils/trunk/src/test-profiles/mvdb/jdbc.properties.hsqldb
    db/ddlutils/trunk/src/test-profiles/mvdb/jdbc.properties.mckoi
    db/ddlutils/trunk/src/test-profiles/mvdb/jdbc.properties.postgresql

Added: db/ddlutils/trunk/src/test-profiles/mvdb/jdbc.properties.axion
URL: http://svn.apache.org/viewcvs/db/ddlutils/trunk/src/test-profiles/mvdb/jdbc.properties.axion?rev=365716&view=auto
==============================================================================
--- db/ddlutils/trunk/src/test-profiles/mvdb/jdbc.properties.axion (added)
+++ db/ddlutils/trunk/src/test-profiles/mvdb/jdbc.properties.axion Tue Jan  3 11:13:52 2006
@@ -0,0 +1,5 @@
+# Properties starting with "datasource." will be fed into the datasource instance of the
+# class configured via the datasource.class property
+datasource.class=org.apache.commons.dbcp.BasicDataSource
+datasource.driverClassName=org.axiondb.jdbc.AxionDriver
+datasource.url=jdbc:axiondb:testdb

Added: db/ddlutils/trunk/src/test-profiles/mvdb/jdbc.properties.derby
URL: http://svn.apache.org/viewcvs/db/ddlutils/trunk/src/test-profiles/mvdb/jdbc.properties.derby?rev=365716&view=auto
==============================================================================
--- db/ddlutils/trunk/src/test-profiles/mvdb/jdbc.properties.derby (added)
+++ db/ddlutils/trunk/src/test-profiles/mvdb/jdbc.properties.derby Tue Jan  3 11:13:52 2006
@@ -0,0 +1,26 @@
+# JDBC properties for Derby >= 10.1.1.0
+
+# Use this property if ddlutils does not recognize the platform from the settings
+#ddlutils.platform=Derby
+
+# Properties starting with "datasource." will be fed into the datasource instance of the
+# class configured via the datasource.class property
+
+datasource.class=org.apache.commons.dbcp.BasicDataSource
+
+# Embedded mode
+
+#datasource.driverClassName=org.apache.derby.jdbc.EmbeddedDriver
+#datasource.url=jdbc:derby:target/database/ddlutils_derby
+
+# The default username for embedded Derby is app; for every other user the must be a corresponding
+# schema defined in the database; see http://db.apache.org/derby/faq.html#schema_exist for details
+#datasource.username=app
+#datasource.password=
+
+# Client/server mode
+
+datasource.driverClassName=org.apache.derby.jdbc.ClientDriver
+datasource.url=jdbc:derby://localhost/ddlutils
+datasource.username=ddlutils
+datasource.password=ddlutils

Added: db/ddlutils/trunk/src/test-profiles/mvdb/jdbc.properties.hsqldb
URL: http://svn.apache.org/viewcvs/db/ddlutils/trunk/src/test-profiles/mvdb/jdbc.properties.hsqldb?rev=365716&view=auto
==============================================================================
--- db/ddlutils/trunk/src/test-profiles/mvdb/jdbc.properties.hsqldb (added)
+++ db/ddlutils/trunk/src/test-profiles/mvdb/jdbc.properties.hsqldb Tue Jan  3 11:13:52 2006
@@ -0,0 +1,21 @@
+# JDBC properties for HsqlDb
+
+# Use this property if ddlutils does not recognize the platform from the settings
+ddlutils.platform=HsqlDb
+
+# Properties starting with "datasource." will be fed into the datasource instance of the
+# class configured via the datasource.class property
+datasource.class=org.apache.commons.dbcp.BasicDataSource
+datasource.driverClassName=org.hsqldb.jdbcDriver
+
+# Embedded mode
+
+#datasource.url=jdbc:hsqldb:file:target/database/ddlutils_hsqldb
+#datasource.username=sa
+#datasource.password=
+
+# Server mode
+
+datasource.url=jdbc:hsqldb:hsql://localhost/xdb
+datasource.username=sa
+datasource.password=

Added: db/ddlutils/trunk/src/test-profiles/mvdb/jdbc.properties.mckoi
URL: http://svn.apache.org/viewcvs/db/ddlutils/trunk/src/test-profiles/mvdb/jdbc.properties.mckoi?rev=365716&view=auto
==============================================================================
--- db/ddlutils/trunk/src/test-profiles/mvdb/jdbc.properties.mckoi (added)
+++ db/ddlutils/trunk/src/test-profiles/mvdb/jdbc.properties.mckoi Tue Jan  3 11:13:52 2006
@@ -0,0 +1,20 @@
+# JDBC properties for Mckoi 1.0.3
+
+# Use this property if ddlutils does not recognize the platform from the settings
+#ddlutils.platform=Mckoi
+
+# Properties starting with "datasource." will be fed into the datasource instance of the
+# class configured via the datasource.class property
+
+datasource.class=org.apache.commons.dbcp.BasicDataSource
+datasource.driverClassName=com.mckoi.JDBCDriver
+datasource.username=ddlutils
+datasource.password=ddlutils
+
+# Embedded mode
+
+#datasource.url=jdbc:mckoi:local://./target/database/ddlutils_mckoi
+
+# Client/server mode
+
+datasource.url=jdbc:mckoi://localhost

Added: db/ddlutils/trunk/src/test-profiles/mvdb/jdbc.properties.postgresql
URL: http://svn.apache.org/viewcvs/db/ddlutils/trunk/src/test-profiles/mvdb/jdbc.properties.postgresql?rev=365716&view=auto
==============================================================================
--- db/ddlutils/trunk/src/test-profiles/mvdb/jdbc.properties.postgresql (added)
+++ db/ddlutils/trunk/src/test-profiles/mvdb/jdbc.properties.postgresql Tue Jan  3 11:13:52 2006
@@ -0,0 +1,34 @@
+# 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
\ No newline at end of file