您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

platform_database_support.rst 1.1KB

12345678910111213141516171819202122232425262728
  1. =============================
  2. Platform and database support
  3. =============================
  4. Operating system
  5. ================
  6. Oscar does not support for Microsoft Windows. Some of Oscar's dependencies don't support Windows and/or are
  7. tricky to install properly in that environment, and therefore you might encounter some errors that prevent a
  8. successful installation. Contributions to improve support for Windows are welcome.
  9. Databases
  10. =========
  11. Oscar officially supports PostgreSQL. Oscar is likely to work with the following databases, but official support is
  12. not provided for them:
  13. * MariaDB
  14. * Oracle
  15. * SQLite (this is suitable only for use in development)
  16. Oscar does not support MySQL. Developers are likely to encounter issues related to Unicode handling and update queries
  17. for certain query types. Both issues are caused by limitations in MySQL itself, or in Django's ORM support for MySQL.
  18. Relevant discussions on Django project are:
  19. * `Make MySQL backend default to utf8mb4 encoding <https://code.djangoproject.com/ticket/18392>`_.
  20. * `QuerySet.update() fails on MySQL if a subquery references the base table <https://code.djangoproject.com/ticket/28787>`_.