1 Reply Latest reply on Sep 7, 2006 12:25 PM by barnaby33

    EJB3 Soft Delete

    mjrother

      I am attempting to accomplish a soft delete of entities without much luck. I have constructed each table to have a column indicating "deleted". I would like to be able to mark the object as deleted instead of the DB removal. How can this be accomplished?

        • 1. Re: EJB3 Soft Delete
          barnaby33

          You can either funnel all of your queries/find operations through a central controller which filters for these "deleted items" or you could construct the controller to always add a parameter to your queries to not return said items.

          Another option is to use triggers to move those rows to a history table.