Hello,
      I am having problems when update a relationship
beetwen two Objects in long transactions. The updates
do not have effects. The attach files contains
mapping, classes and diagram class of the data model.
I am autoStore=true

What can is happening?

Thanks for your help.
Fabio
example:

db = jdo.getDatabase();
db.begin()
db.load(labelConfig,1);
db.commit();
db.close();
// lots of code and time....
// http request response sequence for selection of the
contents of the relationship (plColor)
// lots of code and time....

plColor=new PLColor();
labelConfig.setFontColorPLColor(plcolor);

db = jdo.getDatabase();
db.begin();
db.update(labelConfig);
db.commit();
// fails to update the collection without an error
being thrown.


_________________________________________________________
Do You Yahoo!?
Informaci�n de Estados Unidos y Am�rica Latina, en Yahoo! Noticias.
Vis�tanos en http://noticias.espanol.yahoo.com

Attachment: ClassDiagram.zip
Description: ClassDiagram.zip

Attachment: mappings.zip
Description: mappings.zip

Attachment: classes.zip
Description: classes.zip

Reply via email to