vote up -4 vote down star
exception 
javax.servlet.ServletException: org.hibernate.exception.GenericJDBCException: could not execute query
    org.apache.struts.chain.ComposableRequestProcessor.process(ComposableRequestProcessor.java:286)
    org.apache.struts.action.ActionServlet.process(ActionServlet.java:1913)
    org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:449)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:690)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:803)


root cause 
org.hibernate.exception.GenericJDBCException: could not execute query
    org.hibernate.exception.SQLStateConverter.handledNonSpecificException(SQLStateConverter.java:91)
    org.hibernate.exception.SQLStateConverter.convert(SQLStateConverter.java:79)
    org.hibernate.exception.JDBCExceptionHelper.convert(JDBCExceptionHelper.java:43)
    org.hibernate.loader.Loader.doList(Loader.java:2153)
    org.hibernate.loader.Loader.listIgnoreQueryCache(Loader.java:2029)
    org.hibernate.loader.Loader.list(Loader.java:2024)
    org.hibernate.loader.hql.QueryLoader.list(QueryLoader.java:369)
    org.hibernate.hql.ast.QueryTranslatorImpl.list(QueryTranslatorImpl.java:300)
    org.hibernate.engine.query.HQLQueryPlan.performList(HQLQueryPlan.java:153)
    org.hibernate.impl.SessionImpl.list(SessionImpl.java:1127)
    org.hibernate.impl.QueryImpl.list(QueryImpl.java:79)
    org.cosmosociety.actions.BlogAction.execute(BlogAction.java:35)

My environment is postgre + tomcat + hibernate 3 + struts 1.x. I am going to take a look at hibernate 3 source code later. I will update everybody if I find the solution.

flag
Posting the actual query here would help diagnosing the problem. Also, why is this community wiki? – ChssPly76 Aug 23 at 4:24
I am sorry about the wiki thing. However, I could not get the sql command, because that's already in the hosting server. The application works fine with my local machine. It just do not work for the hosting server. :( – Wing C. Chen Aug 23 at 4:30
1  
Could you include your hibernate query, or your hibernate criteria, and perhaps some of the code leading up to this exception? It would help us understand the problem if we could see the code that created the exception. – free-dom Aug 23 at 4:35

2 Answers

vote up 2 vote down

Have you checked your permissions? If it is working locally and not on your hosting, you may have credentials issue.

link|flag
This is a great point. However, in my case, it does not seem to apply. Thank you. – Wing C. Chen Aug 24 at 12:03
vote up 1 vote down

Check for the differences between the 'hosting server' and your local machine.

Especially do a diff on the two schemas

For further debugging:

  • Activate SQL-Logging, so you get the offending sql-statement. If you can't do it globally do it programmatically before the command causing the exception and deactivate it afterwards.

  • Execute the sql statement on your machine and on the 'hosting server'

  • Assuming you get an exception on the hosting server, but still don't see the reason, simplify the sql statement step by step, until you find the problematic piece, which in turn should identify the problem pretty well.

link|flag
Thanks, I will check through these points and update everybody here:) – Wing C. Chen Aug 24 at 12:04

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.