Hi, I would like to know if the following is correct or what is happing? I have the following query: Parmacaphore_ids = session.query(FitValue.pharmacaphore_id).filter(FitValue.phytochemical_id==id).all() which should return a list if pharmacaphore_ids as integers but I get the following: [(1L,), (2L,), (3L,)] why does it not return [1,2,3]? Thanks
-- 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.
