You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cayenne.apache.org by "Andrey Razumovsky (JIRA)" <ji...@apache.org> on 2009/06/02 13:11:07 UTC

[jira] Created: (CAY-1236) Implement deletion-strategy for DataDomain

Implement deletion-strategy for DataDomain
------------------------------------------

                 Key: CAY-1236
                 URL: https://issues.apache.org/jira/browse/CAY-1236
             Project: Cayenne
          Issue Type: New Feature
          Components: Cayenne Core Library, CayenneModeler GUI
    Affects Versions: 3.0M6
            Reporter: Andrey Razumovsky
            Assignee: Andrey Razumovsky
             Fix For: 3.0 beta 1


This feature will allow user to incercept Cayenne deletion behavior, and do something else that simple SQL-DELETE. For instance, in many cases UPDATE which sets some 'deleted' field to true is more useful
This issue includes core changes and modeler support

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


[jira] Updated: (CAY-1236) Allow providing custom INSERT, UPDATE, DELETE query builders

Posted by "Andrey Razumovsky (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/CAY-1236?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Andrey Razumovsky updated CAY-1236:
-----------------------------------

    Attachment: query-builder-factory.diff

Core changes

> Allow providing custom INSERT, UPDATE, DELETE query builders
> ------------------------------------------------------------
>
>                 Key: CAY-1236
>                 URL: https://issues.apache.org/jira/browse/CAY-1236
>             Project: Cayenne
>          Issue Type: New Feature
>          Components: Cayenne Core Library, CayenneModeler GUI
>    Affects Versions: 3.0M6
>            Reporter: Andrey Razumovsky
>            Assignee: Andrey Razumovsky
>             Fix For: 3.0 beta 1
>
>         Attachments: query-builder-factory.diff
>
>
> This feature will allow user to incercept Cayenne delete insert, update behavior, and do something else that simple SQL-INSERTs, UPDATEs, DELETEs. For instance, in many cases UPDATE which sets some 'deleted' field to true is more useful than simple "DELETE FROM..."
> This issue includes core changes and modeler support

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


[jira] Closed: (CAY-1236) Allow providing custom INSERT, UPDATE, DELETE query builders

Posted by "Andrey Razumovsky (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/CAY-1236?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Andrey Razumovsky closed CAY-1236.
----------------------------------

    Resolution: Fixed

Factory is configured in DataDomain and works only during committing changes. Modeler support (if any) is separate issue

> Allow providing custom INSERT, UPDATE, DELETE query builders
> ------------------------------------------------------------
>
>                 Key: CAY-1236
>                 URL: https://issues.apache.org/jira/browse/CAY-1236
>             Project: Cayenne
>          Issue Type: New Feature
>          Components: Cayenne Core Library, CayenneModeler GUI
>    Affects Versions: 3.0M6
>            Reporter: Andrey Razumovsky
>            Assignee: Andrey Razumovsky
>             Fix For: 3.0 beta 1
>
>         Attachments: query-builder-factory.diff, v2.diff
>
>
> This feature will allow user to incercept Cayenne delete insert, update behavior, and do something else that simple SQL-INSERTs, UPDATEs, DELETEs. For instance, in many cases UPDATE which sets some 'deleted' field to true is more useful than simple "DELETE FROM..."
> This issue includes core changes and modeler support

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


[jira] Updated: (CAY-1236) Allow providing custom INSERT, UPDATE, DELETE query builders

Posted by "Andrey Razumovsky (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/CAY-1236?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Andrey Razumovsky updated CAY-1236:
-----------------------------------

    Description: 
This feature will allow user to incercept Cayenne delete insert, update behavior, and do something else that simple SQL-INSERTs, UPDATEs, DELETEs. For instance, in many cases UPDATE which sets some 'deleted' field to true is more useful than simple "DELETE FROM..."
This issue includes core changes and modeler support

  was:
This feature will allow user to incercept Cayenne deletion behavior, and do something else that simple SQL-DELETE. For instance, in many cases UPDATE which sets some 'deleted' field to true is more useful
This issue includes core changes and modeler support

        Summary: Allow providing custom INSERT, UPDATE, DELETE query builders  (was: Implement deletion-strategy for DataDomain)

> Allow providing custom INSERT, UPDATE, DELETE query builders
> ------------------------------------------------------------
>
>                 Key: CAY-1236
>                 URL: https://issues.apache.org/jira/browse/CAY-1236
>             Project: Cayenne
>          Issue Type: New Feature
>          Components: Cayenne Core Library, CayenneModeler GUI
>    Affects Versions: 3.0M6
>            Reporter: Andrey Razumovsky
>            Assignee: Andrey Razumovsky
>             Fix For: 3.0 beta 1
>
>
> This feature will allow user to incercept Cayenne delete insert, update behavior, and do something else that simple SQL-INSERTs, UPDATEs, DELETEs. For instance, in many cases UPDATE which sets some 'deleted' field to true is more useful than simple "DELETE FROM..."
> This issue includes core changes and modeler support

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


[jira] Updated: (CAY-1236) Allow providing custom INSERT, UPDATE, DELETE query builders

Posted by "Andrey Razumovsky (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/CAY-1236?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Andrey Razumovsky updated CAY-1236:
-----------------------------------

    Attachment: v2.diff

v2

> Allow providing custom INSERT, UPDATE, DELETE query builders
> ------------------------------------------------------------
>
>                 Key: CAY-1236
>                 URL: https://issues.apache.org/jira/browse/CAY-1236
>             Project: Cayenne
>          Issue Type: New Feature
>          Components: Cayenne Core Library, CayenneModeler GUI
>    Affects Versions: 3.0M6
>            Reporter: Andrey Razumovsky
>            Assignee: Andrey Razumovsky
>             Fix For: 3.0 beta 1
>
>         Attachments: query-builder-factory.diff, v2.diff
>
>
> This feature will allow user to incercept Cayenne delete insert, update behavior, and do something else that simple SQL-INSERTs, UPDATEs, DELETEs. For instance, in many cases UPDATE which sets some 'deleted' field to true is more useful than simple "DELETE FROM..."
> This issue includes core changes and modeler support

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