1
嘗試從放在pg_shadow表中選擇一列方式如下:SQLAlchemy的選擇只有一個列
role_tbl = Table('pg_shadow', MetaData(engine), autoload=True)
db.query(role_tbl.c.passwd).filter_by(usename='name')
,並得到一個錯誤:
* AttributeError: 'NoneType' object has no attribute 'class_'