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/17 22:44:49 UTC

svn commit: r369929 - in /db/ddlutils/trunk/src: doc/src/documentation/content/xdocs/database-support.xml test-profiles/mvdb/jdbc.properties.firebird test/jdbc.properties.firebird

Author: mvdb
Date: Tue Jan 17 13:44:43 2006
New Revision: 369929

URL: http://svn.apache.org/viewcvs?rev=369929&view=rev
Log:
Updated docs and added test properties.

Added:
    db/ddlutils/trunk/src/test-profiles/mvdb/jdbc.properties.firebird
    db/ddlutils/trunk/src/test/jdbc.properties.firebird
Modified:
    db/ddlutils/trunk/src/doc/src/documentation/content/xdocs/database-support.xml

Modified: db/ddlutils/trunk/src/doc/src/documentation/content/xdocs/database-support.xml
URL: http://svn.apache.org/viewcvs/db/ddlutils/trunk/src/doc/src/documentation/content/xdocs/database-support.xml?rev=369929&r1=369928&r2=369929&view=diff
==============================================================================
--- db/ddlutils/trunk/src/doc/src/documentation/content/xdocs/database-support.xml (original)
+++ db/ddlutils/trunk/src/doc/src/documentation/content/xdocs/database-support.xml Tue Jan 17 13:44:43 2006
@@ -852,6 +852,10 @@
           <td>Comment format</td>
           <td>A block between <code>/*</code> and <code>*/</code></td>
         </tr>
+        <tr>
+          <td>Maximum key size</td>
+          <td>256</td>
+        </tr>
       </table>
       <table>
         <tr>

Added: db/ddlutils/trunk/src/test-profiles/mvdb/jdbc.properties.firebird
URL: http://svn.apache.org/viewcvs/db/ddlutils/trunk/src/test-profiles/mvdb/jdbc.properties.firebird?rev=369929&view=auto
==============================================================================
--- db/ddlutils/trunk/src/test-profiles/mvdb/jdbc.properties.firebird (added)
+++ db/ddlutils/trunk/src/test-profiles/mvdb/jdbc.properties.firebird Tue Jan 17 13:44:43 2006
@@ -0,0 +1,28 @@
+# JDBC properties for FireBird
+# 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=Firebird
+
+#
+# Using the plain DBCP datasource
+#
+
+datasource.class=org.apache.commons.dbcp.BasicDataSource
+datasource.driverClassName=org.firebirdsql.jdbc.FBDriver
+datasource.url=jdbc:firebirdsql://10.21.21.33:3050/c:/data/firebird/DDLUTILS
+datasource.username=SYSDBA
+datasource.password=masterkey
+# For some schema updates, firebird allows only 1 connection to the database, else it will fail
+# the update..
+# See http://www.firebirdsql.org/index.php?op=faq#q0003.dat for more information
+datasource.maxConnections=1
+datasource.maxActive=1
+datasource.maxIdle=0
+datasource.testOnBorrow=true
+datasource.testOnReturn=true
+datasource.testWhileIdle=true
+
+
+

Added: db/ddlutils/trunk/src/test/jdbc.properties.firebird
URL: http://svn.apache.org/viewcvs/db/ddlutils/trunk/src/test/jdbc.properties.firebird?rev=369929&view=auto
==============================================================================
--- db/ddlutils/trunk/src/test/jdbc.properties.firebird (added)
+++ db/ddlutils/trunk/src/test/jdbc.properties.firebird Tue Jan 17 13:44:43 2006
@@ -0,0 +1,17 @@
+# JDBC properties for FireBird
+# 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=Firebird
+
+#
+# Using the plain DBCP datasource
+#
+
+datasource.class=org.apache.commons.dbcp.BasicDataSource
+datasource.driverClassName=org.firebirdsql.jdbc.FBDriver
+datasource.url=jdbc:firebirdsql://10.21.21.33:3050/c:/data/firebird/DDLUTILS
+datasource.username=SYSDBA
+datasource.password=masterkey
+