Re: [appfuse-user] Error with appfuse:full-source

2009-02-19 Thread rob_h
Saeed Iqbal wrote: > > com.mysql.jdbc.exceptions.MySQLSyntaxErrorException: FUNCTION > appfuse_light.nextval does not exist > I just came across this error in my build, and I think it is down to using the wrong hibernate.dialect. In my case I still had the org.hibernate.dialect.PostgreSQLDial

Re: [appfuse-user] connection pool exhausted error

2009-02-19 Thread ashan
That fixed the issue! THANKS!! Weerawit Maneepongsawat wrote: > > IMO, This is not a good way to getSession from HibernateDaoSupport, > Can you try something like > > getHibernateTemplate().executeFind(new HibernateCallback() { > >public Object >

Re: [appfuse-user] connection pool exhausted error

2009-02-19 Thread Weerawit Maneepongsawat
IMO, This is not a good way to getSession from HibernateDaoSupport, Can you try something like getHibernateTemplate().executeFind(new HibernateCallback() { public Object *doInHibernate *(Session

Re: [appfuse-user] Ignoring insert errors while inserting in hibernate

2009-02-19 Thread RengeshBabu
It is not possible. I can catch the exception but cannot continue. Because I commit outside for-loop. So, when exception is thrown, it means none of the records got inserted, I can catch the exception, but my problem still there. I would like to have some option in hibernate if possible rather tha