Hi, I have a script that's basically been running unmodified for years. In it, it performs an SQLAlchemy query that does a simple join between two tables:
platePointing = session.query(PlatePointing).join(Plate).filter(Plate.plate_id==plateid).one() Suddenly, I'm getting a "NoResultFound" error on this. I've double checked the values in the database; the row - a single matching row - is in fact there. I turned on "echo" to output the raw SQL queries. I copied and pasted the query that SQLAchemy generated into the database, and sure enough it finds the row. The same script/query finds the appropriate row for some values but no others. Since the raw SQL query generated by the line above finds the row but it fails in the script, I'm at a loss on how to proceed to debug this. Any suggestions would be appreciated! Cheers, Demitri -- 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/d/optout.
