Re: [sqlalchemy] add results in a python object

2011-11-23 Thread Wichert Akkerman
On 11/17/2011 01:42 PM, raulna wrote: Hi, i need save results in a python object from multiples querys, like: for user in users: phones = DBSession.query(Phone).filter('... python_object = python_object + phones ?> How can i append this results

[sqlalchemy] add results in a python object

2011-11-17 Thread raulna
Hi, i need save results in a python object from multiples querys, like: for user in users: phones = DBSession.query(Phone).filter('... python_object = python_object + phones ?> How can i append this results in unique object? Thanks -- You received