Re: SQL Component : Error while Inserting record in db table

2010-06-10 Thread mevikasg
Hi Roman, Please find the stack trace attached here with. http://old.nabble.com/file/p28851402/stacktrace.txt stacktrace.txt RomKal wrote: > > 2010/6/10 mevikasg : >> >> Hi Roman, >> >> Thanks for the reply. >> >> I have already tried it but no luck. >> >> Infact, tried following too: >> >>

Re: SQL Component : Error while Inserting record in db table

2010-06-10 Thread Roman Kalukiewicz
2010/6/10 mevikasg : > > Hi Roman, > > Thanks for the reply. > > I have already tried it but no luck. > > Infact, tried following too: > >   errorHandler(deadLetterChannel("mock:error")) >  from("imaps://imap.gmail.com?username=testm...@gmail.com&password=" > >  +"&deleteProcessedMessages=false

Re: SQL Component : Error while Inserting record in db table

2010-06-10 Thread mevikasg
Hi Roman, Thanks for the reply. I have already tried it but no luck. Infact, tried following too: errorHandler(deadLetterChannel("mock:error")) from("imaps://imap.gmail.com?username=testm...@gmail.com&password="                +"&deleteProcessedMessages=false&processOnlyUnseenMessage

Re: SQL Component : Error while Inserting record in db table

2010-06-10 Thread Roman Kalukiewicz
Hello, In camel-sql component you should use # sign instead of ? as question marks has its own meaning in URL notation. Unfortunately it looks that you cannot really use # sign itself, as it will be converted to questionmark (so your '#' will become '?'). I'll create a a bug for this # sign prob

SQL Component : Error while Inserting record in db table

2010-06-10 Thread mevikasg
Hi, I am a newbie in Grails-Camel world. In my grails-groovy web application, i am trying to insert received messages in mail account into db table using Camel SQL component. So far via my Route, i can easily access my mail messages and even can perform SELECT queries on db as well. But, i am u