On Tuesday, October 12, 2010 14:41:12 Karen McNeil wrote: > Also, I'm not sure what you mean by "declarative" and Elixir. Is > Elixir a built-in part of Turbogears? Am I putting something extra in > here that I don't need? (I'm just trying to do a quickstart project.)
All this has little to nothing to do with TG itself. As I said, TG is a "meta"-framework. All things concerning ORM-mapping are SQLAlchemy (or actually whatever you chose) In a quickstarted project, SQLAlchemy (SA) is used, and it's so-called declarative ORM mappings. We use Elixir, a thin layer around SA that roughly does the same as declarative (it comes from a time when SA hadn't had these). It's a question of taste. The one and only thing were TG gets into play (well, sort of) is when you use one of those tg-admin-thingies. I never cared for them, but I guess using declarative should be ok for them. Diez -- You received this message because you are subscribed to the Google Groups "TurboGears" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/turbogears?hl=en.

