Changes between Version 4 and Version 5 of S2S_PERSISTENCE_COMMONS_R0


Ignore:
Timestamp:
11/22/08 11:30:02 (16 years ago)
Author:
meddle
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • S2S_PERSISTENCE_COMMONS_R0

    v4 v5  
    88 
    99== Overview == 
    10 There will be singleton class that will provide the connections and communications with the database. There will be Data Access Objects that  
    11 represent 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. 
     10  * There will be layer that uses JDBC directly, "Database" layer or "JDBC" layer.  
     11  * There will be Data Access Objects that represent the persistence layer in higher level.  
     12  * The primal scheme of the database must be created.. 
     13  * Some of the queries will be created. And a way for keeping them will be developed in later revision. 
    1214 
    1315== Task requirements == 
    14 Create the manager that communicates with the database. 
    15 Create the DAOs that will be needed from the other tasks in this revision. 
    16 Create the database schema to the extend needed by the other tasks in R0 
     16  * Create the JDBC layer using Derby( JavaDB ). 
     17  * Create the DAOs (Data Access Objects) representing the persistence layer.  
     18  * Create the database schema to the extend needed by the other tasks in R0. 
     19  * Think of a way to store the queries; may be in configuration files? 
    1720 
    1821== Task result == 
    19 The end result will be interface for communication with the database. The DAO objects will be our API for accessing the DB. 
     22The end result will be interface for communication with the database. The DAO objects will be our API for accessing the DB. There will be basic database. 
    2023 
    2124== Implementation idea == 
    22 The DAOs will be singleton that execute queries to the database using the DatabaseManager which is also singleton. The singleton 
    23 design pattern is used because of the many queries that will be executed at a time.  
     25The DAOs will execute queries to the database using the JDBC(Database) layer. 
    2426 
    2527== Related == 
    26 ^(Here you can add related tasks that could be useful or helpful.)^ 
     28The schema must be useful for [[TicketQuery(summary=S2S_CORE_SECURITY_R0, compact)]] 
     29 
    2730 
    2831== How to demo ==