On Monday, September 23, 2013 10:31:16 AM UTC-4, Michael Bayer wrote: > > it will definitely show the right thing for echo=True, that's what's being > sent to the database. >
yeah, the `echo` in my debug log is what showed me that postgres was getting the right data. i was doing this to audit (pseudocode): query = build_query() results = session( query ) raise ValueError( str(query) , results ) I naively thought that sqlalchemy was aware that the intended dialect was postgresql. that was wrong. drove me crazy for a day, but I learned a lot about the expression syntax and understood a bit more of the source. no complaints, I'm better from this. -- You received this message because you are subscribed to the Google Groups "sqlalchemy" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/sqlalchemy. For more options, visit https://groups.google.com/groups/opt_out.
