[gaea-help] [ gaeaodb-Bugs-1902312 ] Losing transaction after "Schema Definition Error"
Brought to you by:
jsgoupil
|
From: SourceForge.net <no...@so...> - 2008-02-26 16:29:43
|
Bugs item #1902312, was opened at 2008-02-26 11:29 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1023467&aid=1902312&group_id=212875 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Common Group: v0.8 Status: Open Resolution: None Priority: 5 Private: No Submitted By: Jean-Sstien Goupil (jsgoupil) Assigned to: Benoit Devost (bdevost) Summary: Losing transaction after "Schema Definition Error" Initial Comment: SEE BELOW #### ORIGINAL #### Perte de la transaction après erreur "Schema Definition Error" La class b hérite de a (voir Additional Information pour la définition des classes).Après avoir ajouté a et b, je supprimer b. Ensuite, je ne peux plus rajouter la classe b. Il y a un "Schema Definition Error". Toutes les données dans l'arbre et dans les tableaux sont perdues. Je n'ai plus accès à aucune donnée. Après redémarrage, c'est corerct. -1- Créer et ajouter via le UI les classes a et b (via le Wizard). -2- Fermer le Wizard et s'amuser. -3- Sélectionner (ou pas) la classe b. -4- Supprimer la classe b (via le Wizard). -5- Fermer le Wizard et s'amuser. -6- Essayer de rajouter la classe b :( :( Schema Definition Error a.java /* ********************************************************* * Created: 07-12-07 * Copyright: © 2007 Team Gaea - Université de Sherbrooke * *********************************************************/ package org.gaea.demo; /** * @author Marie */ public class a { protected String aName; } b.java /* ********************************************************* * Created: 07-12-07 * Copyright: © 2007 Team Gaea - Université de Sherbrooke * *********************************************************/ package org.gaea.demo; /** * @author Marie */ public class b extends a { private String bName; } ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1023467&aid=1902312&group_id=212875 |