For example, did you know that since Python has no cross-database way of specifying a prepared SQL statement, that it will take the comparatively much slower path of just re-uploading the same SQL string over and over again, if that string varies at all? And that it's *very* easy to trigger this failure mode with SQLAlchemy because there's nothing to suggest to you that you should not be dropping Python constant objects into the middle of your expressions?