|
Check one more time your classes for
public getters and setters. Also change primitive types to their
Object wrappers (int to Integer, double to Double and so on). This should help! There is nothing problematic. It is so
simple. Best, From: Andreas
Prudzilko [mailto:[EMAIL PROTECTED] Hello, I was wondering why my track_id is set to 0 after an update
statement. The #track.id# syntax worked fine for insert statements, my Track
object is also set properly with a valid ID. Here how it looks like:
<update id="update"
parameterClass="com.sumea.timemachine.model.SumeaProject">
UPDATE project
SET name = #name#,
startdate = #startDate#,
enddate = #endDate#,
color = #color#,
track_id = #track.id#
WHERE project_id = #id#
</update> I wonder what I’m doing wrong. - Andreas |
- RE: Update query Mkhitaryan, Aram
- RE: Update query Daniel Pitts
- RE: Update query Poitras Christian
