2012-11-13 10:55:41,297 ERROR [pool-5-thread-1] com.servoy.j2db.util.Debug - Error executing sql: update assignment_classification_types assigment_classification_types set assigment_classification_types.updated_by=?, assigment_classification_types.updated_at=?, assigment_classification_types.reserve_candidates=?, assigment_classification_types.custom_heading=? where assigment_classification_types.id = ? with params: [2 ,type: java.lang.Integer, 2012-11-13 10:55:41.294 ,type: java.sql.Timestamp, 1 ,type: java.lang.Long, 'Short' ,type: java.lang.String, 1670 ,type: java.lang.Integer] [E6C05FFF-00E5-4599-9AB7-72D3368D47EE MBS_6]
org.postgresql.util.PSQLException: ERROR: column "assigment_classification_types" of relation "assignment_classification_types" does not exist
Position: 75
This is in 6.1.2 developer on Mac OS X 10.8.2
Java Web Start 10.9.2.05
Using JRE version 1.7.0_09-b05 Java HotSpot™ 64-Bit Server VM
Records are failing to save because Servoy is generating faulty SQL:
Why does the table name ‘assignment_classification_types’ appear two times?
It should be
update assignment_classification_types set assigment_classification_types.updated_by=?, assigment_classification_types.updated_at=?, assigment_classification_types.reserve_candidates=?, assigment_classification_types.custom_heading=? where assigment_classification_types.id = ?
no?