SQLAlchemy - SQLite for testing and Postgresql for development - How to port?

前端 未结 3 1163
無奈伤痛
無奈伤痛 2020-12-21 01:26

I want to use sqlite memory database for all my testing and Postgresql for my development/production server.

But the SQL syntax is not same in both dbs. for ex: SQLi

3条回答
  •  有刺的猬
    2020-12-21 01:36

    My suggestion would be: don't. The capabilities of Postgresql are far beyond what SQLite can provide, particularly in the areas of date/numeric support, functions and stored procedures, ALTER support, constraints, sequences, other types like UUID, etc., and even using various SQLAlchemy tricks to try to smooth that over will only get you a slight bit further. In particular date and interval arithmetic are totally different beasts on the two platforms, and SQLite has no support for precision decimals (non floating-point) the way PG does. PG is very easy to install on every major OS and life is just easier if you go that route.

提交回复
热议问题