__init__.py 847 B

123456789101112131415161718192021222324252627282930
  1. # databases/__init__.py
  2. # Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
  3. # <see AUTHORS file>
  4. #
  5. # This module is part of SQLAlchemy and is released under
  6. # the MIT License: http://www.opensource.org/licenses/mit-license.php
  7. """Include imports from the sqlalchemy.dialects package for backwards
  8. compatibility with pre 0.6 versions.
  9. """
  10. from ..dialects.sqlite import base as sqlite
  11. from ..dialects.postgresql import base as postgresql
  12. postgres = postgresql
  13. from ..dialects.mysql import base as mysql
  14. from ..dialects.oracle import base as oracle
  15. from ..dialects.firebird import base as firebird
  16. from ..dialects.mssql import base as mssql
  17. from ..dialects.sybase import base as sybase
  18. __all__ = (
  19. 'firebird',
  20. 'mssql',
  21. 'mysql',
  22. 'postgresql',
  23. 'sqlite',
  24. 'oracle',
  25. 'sybase',
  26. )