Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Atoti Python SDK
extra_jars
>>> 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, ... )
Was this page helpful?