One of the projects I'm working on includes a module that should allow end users to create something that essentially matches their own βobject classesβ that store data structures / record types that they can create and modify at runtime. Users will also be able to significantly customize the user interface, but this is not so much the scale of this issue.
The closest example of what we are trying to build using this functionality that I saw will be something very similar to what InstantObjects provides at development time, except that our system will provide it at runtime and place the design of the class control in hands of the end user (which, as a rule, will be quite technically difficult, obviously).
I recently looked at this list of Persistence Framework objects for Delphi Win32:
http://tdelphihobbyist.blogspot.com/2008/01/win32-object-persistence-frameworks.html
Any recommendations on which of these might be most conducive to the flexibility of the runtime environment that we are trying to create?
source
share