RE: Postgresql serial type problem

2006-09-20 Thread Niels Beekman
@ibatis.apache.org Subject: Re: Postgresql serial type problem   thanks for reply. Problem was solved.  I changed the xml file like this:     insert into PUBLIC.event (   description     )     values (   #event_id#,  #description#     )   On 9/21/06, Daniel Pitts <[EMAIL PROTECTED] >

Re: Postgresql serial type problem

2006-09-20 Thread Okan Çetin
thanks for reply.Problem was solved.  I changed the xml file like this:     insert into PUBLIC.event (   description    )    values (   #event_id#,  #description#    )   On 9/21/06, Daniel Pitts <[EMAIL PROTECTED] > wrote: I would guess that you should omit event_id.  Instead setting

RE: Postgresql serial type problem

2006-09-20 Thread Daniel Pitts
I would guess that you should omit event_id.  Instead setting it in your java code to the return valid of the insert() method. From: Okan Çetin [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 20, 2006 5:08 PMTo: user-java@ibatis.apache.orgSubject: Postgresql serial type problem I hav