Return-Path: Delivered-To: apmail-db-ddlutils-dev-archive@www.apache.org Received: (qmail 69523 invoked from network); 17 Jan 2006 21:45:12 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 17 Jan 2006 21:45:12 -0000 Received: (qmail 10693 invoked by uid 500); 17 Jan 2006 21:45:11 -0000 Delivered-To: apmail-db-ddlutils-dev-archive@db.apache.org Received: (qmail 10648 invoked by uid 500); 17 Jan 2006 21:45:11 -0000 Mailing-List: contact ddlutils-dev-help@db.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: ddlutils-dev@db.apache.org Delivered-To: mailing list ddlutils-dev@db.apache.org Received: (qmail 10633 invoked by uid 500); 17 Jan 2006 21:45:11 -0000 Delivered-To: apmail-db-ddlutils-commits@db.apache.org Received: (qmail 10630 invoked by uid 99); 17 Jan 2006 21:45:11 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 17 Jan 2006 13:45:11 -0800 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.29) with SMTP; Tue, 17 Jan 2006 13:45:10 -0800 Received: (qmail 69414 invoked by uid 65534); 17 Jan 2006 21:44:50 -0000 Message-ID: <20060117214450.69413.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: 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 Date: Tue, 17 Jan 2006 21:44:49 -0000 To: ddlutils-commits@db.apache.org From: mvdb@apache.org X-Mailer: svnmailer-1.0.5 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N 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 @@ Comment format A block between /* and */ + + Maximum key size + 256 + 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 +