-->
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.  [ 2 posts ] 
Author Message
 Post subject: Hibernate throws exception becuase of Dash in table name
PostPosted: Fri Jan 04, 2008 2:08 am 
Newbie

Joined: Thu Oct 26, 2006 11:50 am
Posts: 17
Location: Chesterfield, VA
Need help with Hibernate? Read this first:
http://www.hibernate.org/ForumMailingli ... AskForHelp

Hibernate version: 3.1

Mapping documents:
Code:
   <session-factory>
      <property name="connection.username">user</property>
      <property name="connection.url">jdbc:mysql://localhost/helpture_com_-_findlancer</property>
      <property name="dialect">org.hibernate.dialect.MySQLDialect</property>
      <property name="myeclipse.connection.profile">MYDB</property>
      <property name="connection.password">pwd</property>
      <property name="connection.driver_class">com.mysql.jdbc.Driver</property>


Code between sessionFactory.openSession() and session.close():
Code:
   public void save(Users transientInstance) {
      log.debug("saving Users instance");
      try {
         getHibernateTemplate().save(transientInstance);
         log.debug("save successful");
      } catch (RuntimeException re) {
         log.error("save failed", re);
         throw re;
      }
   }

I don;t have access to the code in the HibernateTemplate.

Full stack trace of any exception that occurs:
Code:
SEVERE: Servlet.service() for servlet action threw exception
java.sql.SQLException: Syntax error or access violation message from server: "You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '-_findlancer.users (notify_format_id, username, passwd, Company"
   at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:2001)
   at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:1168)
   at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:1279)
   at com.mysql.jdbc.Connection.execSQL(Connection.java:2281)
   at com.mysql.jdbc.PreparedStatement.executeUpdate(PreparedStatement.java:1825)
   at com.mysql.jdbc.PreparedStatement.executeUpdate(PreparedStatement.java:1667)
   at org.hibernate.persister.entity.AbstractEntityPersister.insert(AbstractEntityPersister.java:1968)
   at org.hibernate.persister.entity.AbstractEntityPersister.insert(AbstractEntityPersister.java:2405)
   at org.hibernate.action.EntityIdentityInsertAction.execute(EntityIdentityInsertAction.java:37)
   at org.hibernate.engine.ActionQueue.execute(ActionQueue.java:248)
   at org.hibernate.event.def.AbstractSaveEventListener.performSaveOrReplicate(AbstractSaveEventListener.java:269)
   at org.hibernate.event.def.AbstractSaveEventListener.performSave(AbstractSaveEventListener.java:167)
   at org.hibernate.event.def.AbstractSaveEventListener.saveWithGeneratedId(AbstractSaveEventListener.java:101)
   at org.hibernate.event.def.DefaultSaveOrUpdateEventListener.saveWithGeneratedOrRequestedId(DefaultSaveOrUpdateEventListener.java:186)
   at org.hibernate.event.def.DefaultSaveEventListener.saveWithGeneratedOrRequestedId(DefaultSaveEventListener.java:33)
   at org.hibernate.event.def.DefaultSaveOrUpdateEventListener.entityIsTransient(DefaultSaveOrUpdateEventListener.java:175)
   at org.hibernate.event.def.DefaultSaveEventListener.performSaveOrUpdate(DefaultSaveEventListener.java:27)
   at org.hibernate.event.def.DefaultSaveOrUpdateEventListener.onSaveOrUpdate(DefaultSaveOrUpdateEventListener.java:70)
   at org.hibernate.impl.SessionImpl.fireSave(SessionImpl.java:530)
   at org.hibernate.impl.SessionImpl.save(SessionImpl.java:518)
   at org.hibernate.impl.SessionImpl.save(SessionImpl.java:514)
   at org.springframework.orm.hibernate3.HibernateTemplate$12.doInHibernate(HibernateTemplate.java:617)
   at org.springframework.orm.hibernate3.HibernateTemplate.execute(HibernateTemplate.java:366)
   at org.springframework.orm.hibernate3.HibernateTemplate.save(HibernateTemplate.java:614)
   at com.findlancer.data.hibernate.tables.UsersDAO.save(UsersDAO.java:50)
   at com.findlancer.business.user.UserManager.createUser(UserManager.java:74)
   at com.findlancer.presentation.struts.action.RegisterAction.execute(RegisterAction.java:55)
   at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:431)
   at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236)
   at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196)
   at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:432)
   at javax.servlet.http.HttpServlet.service(HttpServlet.java:710)
   at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
   at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
   at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
   at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:230)
   at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:175)
   at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
   at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:104)
   at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
   at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:261)
   at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:844)
   at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:581)
   at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
   at java.lang.Thread.run(Unknown Source)

Name and version of the database you are using:
MySQL 4.1

The generated SQL (show_sql=true):
Code:
org.springframework.jdbc.BadSqlGrammarException: Hibernate operation: could not insert: [com.findlancer.data.hibernate.tables.Users]; bad SQL grammar [insert into helpture_com_-_findlancer.users (notify_format_id, username, passwd, Company, First_Name, Last_Name, Email_Address, Active, date_added, date_updated, fake, gold, balance, gold_expires, notify, rate, expertise, vision, profile) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)]; nested exception is java.sql.SQLException: Syntax error or access violation message from server: "You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '-_findlancer.users (notify_format_id, username, passwd, Company"
   org.springframework.jdbc.support.SQLStateSQLExceptionTranslator.translate(SQLStateSQLExceptionTranslator.java:89)
   org.springframework.orm.hibernate3.HibernateAccessor.convertJdbcAccessException(HibernateAccessor.java:424)
   org.springframework.orm.hibernate3.HibernateAccessor.convertHibernateAccessException(HibernateAccessor.java:411)
   org.springframework.orm.hibernate3.HibernateTemplate.execute(HibernateTemplate.java:371)
   org.springframework.orm.hibernate3.HibernateTemplate.save(HibernateTemplate.java:614)
   com.findlancer.data.hibernate.tables.UsersDAO.save(UsersDAO.java:50)
   com.findlancer.business.user.UserManager.createUser(UserManager.java:74)
   com.findlancer.presentation.struts.action.RegisterAction.execute(RegisterAction.java:55)
   org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:431)
   org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236)
   org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196)
   org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:432)
   javax.servlet.http.HttpServlet.service(HttpServlet.java:710)
   javax.servlet.http.HttpServlet.service(HttpServlet.java:803)


<B> more info</B>

It appears to be related to the name of the database. the ISP were using names the database with a (-) minus sign in the name.[/code]


Top
 Profile  
 
 Post subject:
PostPosted: Fri Jan 04, 2008 6:22 pm 
Newbie

Joined: Thu Oct 26, 2006 11:50 am
Posts: 17
Location: Chesterfield, VA
I figured it out. In the hbm file I needed to wrap the catalog with ` `.


Code:
    <class name="fl.hibernate.tables.Users" table="users" catalog="`helpture_com_-_findlancer`">
        <id name="userId" type="integer">
            <column name="user_id" />
            <generator class="native" />


My problem now is that the tool I'm using to generate the mappings files doesn't do it automatically. That's an issue for another forum.

I just wanted to update this so its in the record.


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 2 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.