IntelliJ Java IDE
The moose likes Object Relational Mapping and the fly likes insert followed by an update with CompositeUserType Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Java » Object Relational Mapping
Reply Bookmark "insert followed by an update with CompositeUserType" Watch "insert followed by an update with CompositeUserType" New topic
Author

insert followed by an update with CompositeUserType

Lakshmi Dasari
Ranch Hand

Joined: Mar 03, 2003
Posts: 35
I observed that on using CompositeUserType,
when I save an object which contains the property defined by CompositeUserType, the SQLs generated are an insert statement
followed by an update statement with only the fields in CompositeUserType.

My application is very sensitive to the SQLs generated
as there are triggers on update statements and
this results in a pseudo update in my audit tables .

Is this a bug with hibernate or is it the expected behaviour ?


Hibernate version:
3.2.1
Mapping documents:


A.class





DB script


Name and version of the database you are using: HSQLDB
The generated SQL (show_sql=true):

insert into A (a1, a2, A3, A4, A5, id) values ('1', '2', '', '', '', 3)
update A set A3='6', A4='7', A5='8' where id=3
[ May 18, 2007: Message edited by: Lakshmi Dasari ]

Lakshmi
 
IntelliJ Java IDE
 
subject: insert followed by an update with CompositeUserType
 
Threads others viewed
Using Hibernate & JScience together?
== and equals in String Class
Doubt in Garbage Collection...........
How many objects eligible for GC??
Sorting ArrayList
IntelliJ Java IDE