| 1 | [[BackLinksMenu]] |
| 2 | |
| 3 | [[TicketQuery(summary=TASK_NAME_R?, compact)]] |
| 4 | |
| 5 | |
| 6 | = Analysis = |
| 7 | ^(The purpose of the analysis is to give as much as possible of the needed information for designing and implementing the task.)^ |
| 8 | |
| 9 | == 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 |
| 11 | |
| 12 | == 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... |
| 20 | |
| 21 | We must decide if we will have opened connection all the time or for every action to the database we will open a connection. |
| 22 | |
| 23 | == Task result == |
| 24 | The end result will be interface for communication with the database. |
| 25 | |
| 26 | == Implementation idea == |
| 27 | ^(It is advisable to include some rough implementations ideas.)^ |
| 28 | |
| 29 | == Related == |
| 30 | ^(Here you can add related tasks that could be useful or helpful.)^ |
| 31 | |
| 32 | == How to demo == |
| 33 | ^(In this section you must add instructions for the demo of the task.)^ |
| 34 | |
| 35 | = Design = |
| 36 | |
| 37 | = Implementation = |
| 38 | ^(Implementation results should be described and linked here (from the wiki or the repository))^ |
| 39 | |
| 40 | = Testing = |
| 41 | |
| 42 | = Comments = |
| 43 | ^(Write comments for this or later revisions here.) |