I have searched in the web.py's doc. but I can't find which databases does the web.py support?
As I have known now, it support mysql, sqlite, postgres, does it support others?such like mongodb
|
|
|
According to web.py source file: https://github.com/webpy/webpy/blob/master/web/db.py, the built-in ORM supports below databases directly:
of course you can use SQLAlchemy as ORM too: http://webpy.org/cookbook/sqlalchemy |
|||
|
|