You are viewing a plain text version of this content. The canonical link for it is here.
Posted to torque-dev@db.apache.org by "Florian Liese (JIRA)" <ji...@apache.org> on 2008/11/17 15:17:44 UTC

[jira] Created: (TORQUE-119) Method "save" doesn't handle exceptions which results in unsavable objects

Method "save" doesn't handle exceptions which results in unsavable objects
--------------------------------------------------------------------------

                 Key: TORQUE-119
                 URL: https://issues.apache.org/jira/browse/TORQUE-119
             Project: Torque
          Issue Type: Bug
          Components: Generator
    Affects Versions: 3.3
            Reporter: Florian Liese


In the method "public void save(Connection con) throws TorqueException" (generated by templates>om>Object) the field "alreadyInSave" indicates that there is an ongoing save process. In the beginning it is set to "true", at the end it is set back to "false". But if an exception occurs (while calling doInsert(...) or doUpdate(...)) this field will not be set back to false 'cause the method throws this exception immediately. So afterwards it isn't possible to save an object using this method.

proposal for fix:
Wrap the "internal" of the save method with a "try { ... } finally { ... }" - statement and in the finally set the field "alreadyInSave" to false.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: torque-dev-unsubscribe@db.apache.org
For additional commands, e-mail: torque-dev-help@db.apache.org