that doesnt help much. We really need a standalone script which
reproduces the behavior on its own. You'll probably find the issue
yourself as you go through this process.
On May 6, 2008, at 12:28 PM, [EMAIL PROTECTED] wrote:
> #From the Model
> jobs_table = Table('jobs', metadata, autoload=True)
> mapper(Job, jobs_table )
>
> #The Job Class is pretty generic so I wont include it
> #The method that does the display with a debug print
> def list(self):
> c.jobs = Session.query(Job).all()
> for j in c.jobs:
> print j
> return render('/jobs/listjobs.mako')
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"sqlalchemy" 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/sqlalchemy?hl=en
-~----------~----~----~----~------~----~------~--~---