Documentation Index
Fetch the complete documentation index at: https://docs.activeviam.com/llms.txt
Use this file to discover all available pages before exploring further.
Constants for the Java class names of the embedded JDBC drivers.
To use another JDBC driver, add it to extra_jars.
Example
Storing user content in Google BigQuery:
>>> from pathlib import Path
>>> from atoti_jdbc import UserContentStorageConfig
>>> user_content_storage_config = UserContentStorageConfig(
... "jdbc:bigquery://https://www.googleapis.com/bigquery/v2:443;ProjectId=PROJECT_ID;OAuthType=0;OAuthServiceAcctEmail=EMAIL_OF_SERVICEACCOUNT;OAuthPvtKeyPath=path/to/json/keys;",
... driver="com.simba.googlebigquery.jdbc42.Driver",
... )
>>> session_config = tt.SessionConfig(
... extra_jars=Path("odbc_jdbc_drivers").glob("*.jar"),
... user_content_storage=user_content_storage_config,
... )
atoti_jdbc.driver.H2_DRIVER = ‘org.h2.Driver’
H2 driver class name.
IBM Db2 driver class name.
atoti_jdbc.driver.MARIADB_DRIVER = ‘org.mariadb.jdbc.Driver’
MariaDB driver class name.
Microsoft SQL Server driver class name.
atoti_jdbc.driver.ORACLE_DRIVER = ‘oracle.jdbc.OracleDriver’
Oracle driver class name.
atoti_jdbc.driver.POSTGRESQL_DRIVER = ‘org.postgresql.Driver’
PostgreSQL driver class name.
atoti_jdbc.driver.SQLITE_DRIVER = ‘org.sqlite.JDBC’
SQLite driver class name.