Add support for database engine SAP Hana (#8411)

* Add support for database engine SAP Hana

* Support hana services

Increase time, minute, and second

* Fix hana return string

* Fix formatting errors
This commit is contained in:
axuew
2019-11-12 14:42:44 +08:00
committed by Ville Brofeldt
parent 62476c5901
commit 763f59fc58
4 changed files with 64 additions and 0 deletions

View File

@@ -404,12 +404,24 @@ Here's a list of some of the recommended packages.
| Vertica | ``pip install | ``vertica+vertica_python://`` |
| | sqlalchemy-vertica-python`` | |
+------------------+---------------------------------------+-------------------------------------------------+
| Hana | ``pip install hdbcli sqlalchemy-hana``| ``hana://`` |
| | or ``pip install superset[hana]`` | |
+------------------+---------------------------------------+-------------------------------------------------+
Note that many other databases are supported, the main criteria being the
existence of a functional SqlAlchemy dialect and Python driver. Googling
the keyword ``sqlalchemy`` in addition of a keyword that describes the
database you want to connect to should get you to the right place.
Hana
------------
The connection string for Hana looks like this ::
hana://{username}:{password}@{host}:{port}
(AWS) Athena
------------