Changes between Version 1 and Version 2 of Backtracking


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

--

Legend:

Unmodified
Added
Removed
Modified
  • Backtracking

    v1 v2  
    44
    55'''EntityBuilder'''
     6
    67The EntityBuilder has the task of building an entity. There are two types of Entities:
    78
     
    1516''select * from entity, attribute,  entity_attribute where entity.id = X && attribute.id= Y &&  entity_attribute.entityId = X && entity_attribute.attributeId= Y'',
    1617Where X, Y are Numbers.
     18
     19The Builder class requires a modification to difference between the current entity and its previous version.
     20
     21The following query will be used to build the current entity:
     22
     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“.''