__init__.py 389 B

123456789101112131415161718
  1. """
  2. This namespace/package wrap the sql functionalities for a certain data-stores
  3. - netezza, postgresql, mysql and sqlite
  4. - mariadb, redshift (also included)
  5. """
  6. from . import postgresql, mysql, netezza, sqlite
  7. #
  8. # Creating aliases for support of additional data-store providerss
  9. #
  10. mariadb = mysql
  11. redshift = postgresql
  12. sqlite3 = sqlite
  13. # from transport import sql