-->
These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 6 posts ] 
Author Message
 Post subject: Can't set dialect
PostPosted: Thu Jun 01, 2006 10:10 am 
Beginner
Beginner

Joined: Thu Mar 18, 2004 8:11 am
Posts: 38
Location: Italy
Hibernate version: 3.1.3

Mapping documents: annotated

Name and version of the database you are using: PostgreSQL 8.1

I'm using EJB3 with the following META-INF/persistence.xml:

Code:
<?xml version="1.0" encoding="UTF-8"?>
<persistence>
   <persistence-unit name="caspedDatabase" transaction-type="JTA">
      <provider>org.hibernate.ejb.HibernatePersistence</provider>
      <jta-data-source>java:CaspedDS</jta-data-source>
      <jar-file/>
      <properties>
         <property name="jboss.entity.manager.factory.jndi.name"
          value="java:caspedDatabase"
         />

         <property name="hibernate.dialect" value="org.hibernate.dialect.PostgreSQLDialect"/>

         <property name="hibernate.connection.isolation" value="8" />

         <property name="hibernate.transaction.manager_lookup_class"
          value="org.hibernate.transaction.JBossTransactionManagerLookup"
         />

         <property name="hibernate.default_schema" value="public"/>

         <property name="hibernate.hbm2ddl.auto" value="create-drop"/>
         <property name="hibernate.show_sql" value="false"/>
      </properties>
   </persistence-unit>
</persistence>


I'm defining the dialect as org.hibernate.dialect.PostgreSQLDialect, but nonetheless I get the following message during configuration:

Quote:
INFO [Dialect] Using dialect: org.hibernate.dialect.HSQLDialect


How does it came?

Regards,

giampaolo

_________________
Giampaolo Tomassoni
Italy


Top
 Profile  
 
 Post subject: other configurations?
PostPosted: Thu Jun 01, 2006 1:09 pm 
Newbie

Joined: Fri Feb 24, 2006 2:00 pm
Posts: 4
check the locations in your classpath to make sure you don't have any other configuration files out there overridding the values in the one you're working on. my guess would be that the dialect is getting set to Postgres, but perhaps another configuration file is being read later that's setting it to HSQL.

hope that helps,
nikhil


Top
 Profile  
 
 Post subject:
PostPosted: Thu Jun 01, 2006 1:21 pm 
Hibernate Team
Hibernate Team

Joined: Sun Sep 14, 2003 3:54 am
Posts: 7256
Location: Paris, France
Works fine for me.
What is your environment / HEM version?

_________________
Emmanuel


Top
 Profile  
 
 Post subject:
PostPosted: Thu Jun 01, 2006 1:50 pm 
Beginner
Beginner

Joined: Thu Mar 18, 2004 8:11 am
Posts: 38
Location: Italy
emmanuel wrote:
What is your environment / HEM version?


JBoss 4.0.4 GA + HEM 3.2.0.CR1.

The EJB3 is the one shipped with that JBoss.

_________________
Giampaolo Tomassoni
Italy


Top
 Profile  
 
 Post subject:
PostPosted: Fri Jun 02, 2006 8:50 am 
Beginner
Beginner

Joined: Thu Mar 18, 2004 8:11 am
Posts: 38
Location: Italy
I had to switch to mixed annotation + .hbm.xml mappings and now the correct dialect seems to be detected.

Is it possible the problem is somehow restricted to annotation-only setups?

_________________
Giampaolo Tomassoni
Italy


Top
 Profile  
 
 Post subject:
PostPosted: Sun Jul 09, 2006 6:10 am 
Hibernate Team
Hibernate Team

Joined: Sun Sep 14, 2003 3:54 am
Posts: 7256
Location: Paris, France
No the dialect is unrelated to annotations / hbm

_________________
Emmanuel


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 6 posts ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.