Persistence layers for Access?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,

In my current access programs I am using business objects (class modules)
that handle access to the database. This is a lot of repetitive work. Is
there any Object Persistency product that you could recommend for Access or
are there none in existence?
 
I am not looking for a solution to secure my database but rather one that
works like Hibernate or the up and coming ObjectSpaces. In short: a product
that can add persistency to class modules in an automated fashion. This to
help separate the UI code from the data persistency code as much as possible
and keep Form modules clean and readable.

"Klatuu" schreef:
 
Dirk said:
I am not looking for a solution to secure my database but rather one that
works like Hibernate or the up and coming ObjectSpaces. In short: a product
that can add persistency to class modules in an automated fashion. This to
help separate the UI code from the data persistency code as much as possible
and keep Form modules clean and readable.


I think you should take a look at a code generator for Data Access
Objects.

http://www.codefutures.com/data-access-object/

In the context of MS Access, you could look at this:

http://www.codefutures.com/access/
 
Back
Top