Changes between Version 3 and Version 4 of S2S_PERSISTENCE_COMMONS_R0


Ignore:
Timestamp:
11/21/08 09:40:00 (16 years ago)
Author:
meddle
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • S2S_PERSISTENCE_COMMONS_R0

    v3 v4  
    1616Create the database schema to the extend needed by the other tasks in R0 
    1717 
    18 We must decide if we will have opened connection all the time or for every action to the database we will open a connection. 
    19  
    2018== Task result == 
    21 The end result will be interface for communication with the database. The DAO objects will use the connection to the DB 
    22 provided by the database manager and will be used directly only by the services. The DAO object will create queries to the database like: 
    23 {{{ 
    24 SELECT FROM USER password where username={?} 
    25 }}}  
     19The end result will be interface for communication with the database. The DAO objects will be our API for accessing the DB. 
    2620 
    2721== Implementation idea == 
     
    3327 
    3428== How to demo == 
    35 There will be JUnit tests for that task. The DAOs will be used by the service layer. 
     29There will be JUnit tests for that task. 
    3630 
    3731= Design =