Changes between Version 2 and Version 3 of S2S_PERSISTENCE_COMMONS_R0


Ignore:
Timestamp:
11/20/08 17:41:43 (16 years ago)
Author:
meddle
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • S2S_PERSISTENCE_COMMONS_R0

    v2 v3  
    88 
    99== Overview == 
    10 There will be singleton class that will provide the connections and communications with the database. There will be entity classes that will correspond to tables in the database 
     10There will be singleton class that will provide the connections and communications with the database. There will be Data Access Objects that  
     11represent the persistence layer and communicate with the database. They will persist, update, delete and retrieve the objects used by the service and view layers. The scheme of the database will be created and used from the DAO(Data Access Object)s. 
    1112 
    1213== Task requirements == 
    13 We must decide how we will implement the persistence of the entities to the database. We must design and implement the IDatabaseManager using some of the following approaches or something else : 
    14  * Use reflection and the entities property names? 
    15  * The entities are dictionaries with appropriate getters and setters? 
    16  * Static strings for names? 
    17  * Every entity has it's own persist, update, insert, etc methods,  
    18    that use IDatabaseManager? In that case the database manager will have 
    19    methods like openConnection and closeConnection... 
     14Create the manager that communicates with the database. 
     15Create the DAOs that will be needed from the other tasks in this revision. 
     16Create the database schema to the extend needed by the other tasks in R0 
    2017 
    2118We must decide if we will have opened connection all the time or for every action to the database we will open a connection. 
    2219 
    2320== Task result == 
    24 The end result will be interface for communication with the database. 
     21The end result will be interface for communication with the database. The DAO objects will use the connection to the DB 
     22provided by the database manager and will be used directly only by the services. The DAO object will create queries to the database like: 
     23{{{ 
     24SELECT FROM USER password where username={?} 
     25}}}  
    2526 
    2627== Implementation idea == 
    27 ^(It is advisable to include some rough implementations ideas.)^ 
     28The DAOs will be singleton that execute queries to the database using the DatabaseManager which is also singleton. The singleton 
     29design pattern is used because of the many queries that will be executed at a time.  
    2830 
    2931== Related == 
     
    3133 
    3234== How to demo == 
    33 ^(In this section you must add instructions for the demo of the task.)^ 
     35There will be JUnit tests for that task. The DAOs will be used by the service layer. 
    3436 
    3537= Design =