From 6237cea95224903ea79aa82350dd7a175a120970 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=CA=88=E1=B5=83=E1=B5=A2?= Date: Thu, 7 May 2020 12:17:37 -0700 Subject: [PATCH] [docs] add postgres documentation (#9766) --- docs/installation.rst | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/docs/installation.rst b/docs/installation.rst index baa14a67f..c6a7c37eb 100644 --- a/docs/installation.rst +++ b/docs/installation.rst @@ -417,6 +417,16 @@ 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. +PostgreSQL +------------ + +The connection string for PostgreSQL looks like this :: + + postgresql+psycopg2://{username}:{password}@{host}:{port}/{database} + +See `psycopg2 SQLAlchemy `_. + + Hana ------------