diff options
Diffstat (limited to 'lib/sqlalchemy/dialects/postgresql/zxjdbc.py')
-rw-r--r-- | lib/sqlalchemy/dialects/postgresql/zxjdbc.py | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/lib/sqlalchemy/dialects/postgresql/zxjdbc.py b/lib/sqlalchemy/dialects/postgresql/zxjdbc.py index 8382da831..381424c7f 100644 --- a/lib/sqlalchemy/dialects/postgresql/zxjdbc.py +++ b/lib/sqlalchemy/dialects/postgresql/zxjdbc.py @@ -6,11 +6,19 @@ """Support for the PostgreSQL database via the zxjdbc JDBC connector. -JDBC Driver +DBAPI ----------- The official Postgresql JDBC driver is at http://jdbc.postgresql.org/. +Connecting +---------- + +Connect string format:: + + postgresql+zxjdbc://scott:tiger@localhost/db + + """ from ...connectors.zxJDBC import ZxJDBCConnector from .base import PGDialect, PGExecutionContext |