deform is a form library that is not tied to your backend storage similar to a few other form libraries. Unlike FormAlchemy that is based almost exclusively on your models, the glue to attach deform to an SQL backend has to be written by you.
There are likely some bugs in the url that follows as it was a proof of concept, but, I am using it during development of a production app. While I'm using mysql, sqlite should work fine with some minor schema changes. The one thing I don't recall on sqlite is whether types are sent through properly. If Deform is taking an integer field, your appstruct needs to have the type of the value to also be an integer. http://cd34.com/blog/framework/using-pyramid-with-deform-to-editcreate-records-in-sqlalchemy-backed-database/ -- You received this message because you are subscribed to the Google Groups "pylons-discuss" 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/pylons-discuss?hl=en.
