2024-03-28 20:34:39 +00:00
|
|
|
"""
|
|
|
|
This namespace/package wrap the sql functionalities for a certain data-stores
|
|
|
|
- netezza, postgresql, mysql and sqlite
|
|
|
|
- mariadb, redshift (also included)
|
|
|
|
"""
|
2024-06-15 05:50:53 +00:00
|
|
|
from . import postgresql, mysql, netezza, sqlite, sqlserver, duckdb
|
2024-03-28 20:34:39 +00:00
|
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
# Creating aliases for support of additional data-store providerss
|
|
|
|
#
|
|
|
|
mariadb = mysql
|
|
|
|
redshift = postgresql
|
|
|
|
sqlite3 = sqlite
|
|
|
|
|
|
|
|
|
|
|
|
# from transport import sql
|
|
|
|
|