line 1, in <module> sqlalchemy.exc.ProgrammingError: (ProgrammingError) syntax error at or near "invalid" LINE 1: invalid sql ^ >>> s.execute(users.select()).fetchone() Traceback (most recent call last): File "<stdin>", line 1, in <module> sqlalchemy.exc.InternalError: (InternalError) current transaction is aborted, commands ignored until end of transaction block
== 'john').first() ... >>> john.email_address u'[email protected]' >>> john.posts.count() 1L >>> john.posts.first().author is john True notice how john is in memory only once!