[jbossseam-issues] [JBoss JIRA] Created: (JBSEAM-539) Add in support for enterprisedb

gregorypierce (JIRA) jira-events at jboss.com
Wed Nov 29 17:40:55 EST 2006


Add in support for enterprisedb
-------------------------------

                 Key: JBSEAM-539
                 URL: http://jira.jboss.com/jira/browse/JBSEAM-539
             Project: JBoss Seam
          Issue Type: Feature Request
          Components: Tools
    Affects Versions: 1.1.0.CR1
            Reporter: gregorypierce


EnterpriseDB is a Postgres dialect database with coolness in tools and support.

The following conditions, when put in the appropriate locations, will give you support for this database out of the box.

    	<property name="database.type.default" value="hsql"/>
        <input addproperty="database.type.new" 
                   message="What kind of database are you using? [${database.type.default}] " 
        	     validargs="hsql,mysql,oracle,postgres,mssql,db2,sybase,enterprisedb"
              defaultvalue="${database.type.default}"/>


        <condition property="hibernate.dialect.default" value="org.hibernate.dialect.PostgreSQLDialect">
        	<equals arg1="${database.type.new}" arg2="enterprisedb"/>
        </condition>


        <condition property="hibernate.connection.driver_class.default" value="com.edb.Driver">
        	<equals arg1="${database.type.new}" arg2="enterprisedb"/>
        </condition>


        <condition property="hibernate.connection.url.default" value="jdbc:edb://localhost:5444/edb">
        	<equals arg1="${database.type.new}" arg2="enterprisedb"/>
        </condition>        

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        



More information about the seam-issues mailing list