这是一个创建于 3136 天前的主题,其中的信息可能已经有所发展或是发生改变。
1.foreign key
使用 SQLite 的时候,如果不设置 foreign key ,默认是 0 ,但是在 PostgreSQL 下不行,需要设置为 None 。
2.SQLAlchemy 的 or_和 and_操作
and_(users_table.c.name == 'wendy', users_table.c.enrolled == True)
PostgreSQL 下需要把”==“改为”=“。
3.Boolean
SQLite 存的是 0 和 1 , PostgreSQL 不是。
1 条回复 • 2016-04-28 09:03:24 +08:00
|
|
1
ideaplat 2016-04-28 09:03:24 +08:00
学习了
|