R
rieh25
I've been thinking about a module (actually I have it partially implemented
in Zope), that would do the following things:
- Read the structure of a MySql database (fill a dictionary with it)
In order to:
- Quickly create detail/filter/update forms given a table name (without
specifying the fields because they have already been detected)
- Keep state of record selection. In order to implement Master-Detail form
processing, with unlimited levels of parent-child table relations, which
have also been detected already (foreign keys)
- Management of interrelation between security and menus (a user can only
access certain parts of the application)
I think that Ruby on Rails does something similar, but still I thing it
would be interesting to implement it in Python. What do you think?
in Zope), that would do the following things:
- Read the structure of a MySql database (fill a dictionary with it)
In order to:
- Quickly create detail/filter/update forms given a table name (without
specifying the fields because they have already been detected)
- Keep state of record selection. In order to implement Master-Detail form
processing, with unlimited levels of parent-child table relations, which
have also been detected already (foreign keys)
- Management of interrelation between security and menus (a user can only
access certain parts of the application)
I think that Ruby on Rails does something similar, but still I thing it
would be interesting to implement it in Python. What do you think?