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 to...@apache.org on 2006/02/22 23:39:42 UTC

svn commit: r379947 - /db/ddlutils/trunk/src/test/jdbc.properties.sqlserver2005

Author: tomdz
Date: Wed Feb 22 14:39:40 2006
New Revision: 379947

URL: http://svn.apache.org/viewcvs?rev=379947&view=rev
Log:
Added profile for Sql Server 2005

Added:
    db/ddlutils/trunk/src/test/jdbc.properties.sqlserver2005

Added: db/ddlutils/trunk/src/test/jdbc.properties.sqlserver2005
URL: http://svn.apache.org/viewcvs/db/ddlutils/trunk/src/test/jdbc.properties.sqlserver2005?rev=379947&view=auto
==============================================================================
--- db/ddlutils/trunk/src/test/jdbc.properties.sqlserver2005 (added)
+++ db/ddlutils/trunk/src/test/jdbc.properties.sqlserver2005 Wed Feb 22 14:39:40 2006
@@ -0,0 +1,19 @@
+# JDBC properties for Microsoft Sql Server 2005
+
+# Use this property if ddlutils does not recognize the platform from the settings
+#ddlutils.platform=MsSql
+
+# 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.microsoft.sqlserver.jdbc.SQLServerDriver
+datasource.url=jdbc:sqlserver://localhost;databaseName=ddlutils;selectMethod=cursor
+
+datasource.username=ddlutils
+datasource.password=ddlutils
+
+# Sql Server supports both catalogs and schemas, so we should define them both
+ddlutils.catalog=ddlutils
+ddlutils.schema=dbo