I have a table in postgresql and in this table there is a column that's type is serial. (event_id is serial )
I am adding data in this table like this;
<insert id="insertEvent" parameterClass="Event">
insert into PUBLIC.event (
event_id,
description
)
values (
#event_id#, #description#
)
</insert>
Although the data is correctly inserted into the table, event_id column is empty. In database side, event_id's type is serial, there is no problem if I add data by manually, the event_id is automaticly increasing. In ibatis should I do some extra config to do this?
Thanks,
Okan.
--
~
otomatik oluşturuldu:
http://ocetin.net/log
http://linux.beykent.edu.tr
- Postgresql serial type problem Okan Çetin
- RE: Postgresql serial type problem Daniel Pitts
- Re: Postgresql serial type problem Okan Çetin
- RE: Postgresql serial type problem Niels Beekman
