Re: storing data in a desktop app
Arved Sandstrom wrote:
harryos wrote:
I am plannig to write a task /time tracking app in which a user can
add/edit tasks and later get reports about the tasks completed.I
thought of doing it as a web app with hsqldb to store data.Then ,when
I came to think about it,I wondered why I couldn't do this as a
desktop application.Is it a good idea to use rdbms in a desktop app?I
mean can I make my application in such a way that a user will not have
to do database setup separately.I am intending to give this
application to users who will have no knowledge about database systems
or their setup.Can I hide the db setup/access and everything related
to data storage inside my appliation and thus invisible to the user?Or
do I have to store data as csv?
Whatever you choose for persistent storage it's a good idea to separate
the implementation of it from the rest of your application. I recommend
reading http://en.wikipedia.org/wiki/Data_access_layer to start; it's a
short and sweet description of the concept that I'm talking about, the
Data Access Layer (DAL).
With a good DAL design& implementation, your business logic, when it
needs to find or save or remove domain objects, simply calls methods
like "save" or "find" or "delete" on DAL interfaces. It's transparent to
your business logic that JPA or straight JDBC or file storage is being used.
I'll caution you about the last paragraph, where it says that ORM tools
Object-to-Relational Mapping
"provide data layers in this fashion". Well, no, they really don't. If
using JPA with certain popular Java ORMs, a common pattern of use sees
JPA calls sprinkled through all levels of an application. If you want to
have a proper DAL with JPA you still need to design and write a proper DAL.
Having said all that, I see no problems with using HSQLDB or Derby as
your persistence _implementation_. You can certainly make the overall
application very user-friendly.
+1.
As an advanced topic, there can be a DAL that is not monolithic. DAL
functionality can be implemented by service-specific instances that parallel
each other within the DAL.
There are pros and cons as with all tool selections.
ORM tools *can* provide a DAL "in this fashion" if you don't abuse them, e.g.,
by falling into the "sprinkle" trap.
Tools can be abused, and don't apply everywhere. JPA is for a common use
case, persistence-backed object models. It is not intended to present a
data-oriented persistence view to the application. People often attempt to
suborn JPA's automatic features in a misguided attempt to control data access.
This leads to clumsy, difficult-to-maintain data "layers".
With a solid object model, you accomplish Arved's advice to separate data
concerns cleanly from your application. For most scenarios the application
sees only objects and their relationships handed up by JPA. Corner cases you
hide behind service interfaces that live at roughly the same layer as the ORM
or barely above it.
As a rule of thumb, any type that knows about 'EntityManager' should be in the
same layer.
--
Lew
Honi soit qui mal y pense.