Changes between Version 2 and Version 3 of Backtracking


Ignore:
Timestamp:
Oct 16, 2009, 3:06:10 PM (15 years ago)
Author:
jurzua
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Backtracking

    v2 v3  
    1 Backtracking
     1= Backtracking =
    22
    33The issue of Backtracking considers the need of save every version of a modified entity and makes possible the reverse  of an action. Hereby will be described a perspective to solve this problematic.
     
    1414In the current version of ismi is needing the following join to build an entity:
    1515
    16 ''select * from entity, attribute,  entity_attribute where entity.id = X && attribute.id= Y &&  entity_attribute.entityId = X && entity_attribute.attributeId= Y'',
     16  ''select * from entity, attribute,  entity_attribute where entity.id = X && attribute.id= Y &&  entity_attribute.entityId = X && entity_attribute.attributeId= Y'',
    1717Where X, Y are Numbers.
    1818
     
    2121The following query will be used to build the current entity:
    2222
    23 ''select * from entity, attribute,  entity_attribute where entity.id = X && attribute.id= Y &&  entity_attribute.entityId = X && entity_attribute.attributeId= Y && entity.systemStatus = “original” && attribute.systemStatus = original“.''
     23  ''select * from entity, attribute,  entity_attribute where entity.id = X && attribute.id= Y &&  entity_attribute.entityId = X && entity_attribute.attributeId= Y && entity.systemStatus = “original” && attribute.systemStatus = original“.''