MongoDB connector for BI SQLAlchemy Dialect
Project description
MongoDB connector for BI SQLAlchemy dialect.
MongoDB connector for BI does not have support for transactions but SQLAlchemy DBAPI layer uses ROLLBACKs after the connection initialization even if the connection pool is configured with reset_on_return=False. This dialect ignores COMMITs and ROLLBACKs, and uses the NullPool connection pool (which means no pooling, opens and closes the underlying DB-API connection per each connection open/close).
Usage
The DSN format is similar to that of mysql:
engine = create_engine( "mongobi://user?source=auth_db:password@url:port/database", connect_args={ "ssl": { "mode": "PREFERRED" } }, pool_reset_on_return=False, )
DBAPI Support
The following DBAPI options are available:
mysqlclient:
mongobi+mysqldb://user?source=auth_db:password@url:port/database
PyMySQL:
mongobi+pymysql://user?source=auth_db:password@url:port/database
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Close
Hashes for sqlalchemy_mongobi-0.2.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4c1459913f923e3035f361a014fdfd17e12e44f2ddd555fa7295d09492ece5c1 |
|
MD5 | 944cdaefd4e5992b4d155135df0f049e |
|
BLAKE2b-256 | df5a0a8098130152caddb238399d696c20794b97057605095cf7d2f66b729f84 |