atoti_sql package¶
Submodules¶
atoti_sql.drivers module¶
Supported SQL drivers.
To use another JDBC driver, add the driver’s JAR in the extra_jars
parameter passed to atoti.config.create_config()
.
-
atoti_sql.drivers.
H2
= 'org.h2.Driver'¶ H2 driver.
-
atoti_sql.drivers.
IBM_DB2
= 'com.ibm.db2.jcc.DB2Driver'¶ IBM DB2 driver.
-
atoti_sql.drivers.
MARIADB
= 'org.mariadb.jdbc.Driver'¶ MariaDB driver.
-
atoti_sql.drivers.
MICROSOFT_SQL_SERVER
= 'com.microsoft.sqlserver.jdbc.SQLServerDriver'¶ Microsoft SQL Server driver.
-
atoti_sql.drivers.
MYSQL
= 'com.mysql.jdbc.Driver'¶ MySQL driver.
-
atoti_sql.drivers.
ORACLE
= 'oracle.jdbc.OracleDriver'¶ Oracle driver.
-
atoti_sql.drivers.
POSTGRESQL
= 'org.postgresql.Driver'¶ PostgreSQL driver.
Module contents¶
Plugin to load the results of SQL queries into atoti stores.
This package is required to use atoti.store.Store.load_sql()
and atoti.session.Session.read_sql()
.
It can be installed with pip or conda:
pip install atoti[sql] conda install atoti-sql
Supported SQL implementations are the ones available in atoti_sql.drivers
.