views:

572

answers:

1

Anyone know of a good beginners tutorial for Turbogears 2? I'm particularly interested in one that would have some details on working with existing database schema rather than creating from scratch. (and some pointers on MS SQL server setup would help too!)

+1  A: 

A very good TG2 tutorial is the movie demo http://turbogears.org/2.0/docs/main/RestControllers.html. It walks you into the basics of what a "high level" TG2 app is.

Regarding your MS SQL question I agree with joeforker, this is more a SA issue than TG. You have several options the best is the very experimental code put together by Chris Perkins, based on autocode and some snips from myself. This currently works well with postgres and sqlite, we'll love some MS SQL patches :) http://bitbucket.org/percious/sqlautocode/

Jorge Vargas