> ## 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.

# atoti_directquery_jdbc.ConnectionConfig

### *final class* atoti\_directquery\_jdbc.ConnectionConfig

Config to connect to an external database through JDBC.

<Callout icon="link">
  **See also**:
  [`atoti_directquery_snowflake.ConnectionConfig`](./atoti_directquery_snowflake.connection_config#atoti_directquery_snowflake.ConnectionConfig) for an example.
</Callout>

#### auto\_multi\_column\_array\_conversion *: [AutoMultiColumnArrayConversion](./atoti.directquery.array_conversion.auto_multi_column_array_conversion#atoti.AutoMultiColumnArrayConversion) | [None](https://docs.python.org/3/library/constants.html#None)* *= None*

When not `None`, multi-column array conversion will be performed automatically.

#### column\_clustered\_queries *: 'all' | 'feeding'* *= 'feeding'*

Control which queries will use clustering columns.

#### feeding\_query\_timeout *: Duration* *= datetime.timedelta(seconds=3600)*

Timeout for queries performed on the external database during feeding phases.

The feeding phases are:

* the initial load to feed [`aggregate_providers`](./atoti.Cube.aggregate_providers#atoti.Cube.aggregate_providers) and [`hierarchies`](./atoti.Cube.hierarchies#atoti.Cube.hierarchies);
* the refresh operations.

#### lookup\_mode *: 'allow' | 'warn' | 'deny'* *= 'warn'*

Whether lookup queries on the external database are allowed.

Lookup can be very slow and expensive as the database may not enforce primary keys.

#### max\_sub\_queries *: Annotated\[[int](https://docs.python.org/3/library/functions.html#int), Field(gt=0)]* *= 500*

Maximum number of sub queries performed when splitting a query into multi-step queries.

#### password *: [str](https://docs.python.org/3/library/stdtypes.html#str) | [None](https://docs.python.org/3/library/constants.html#None)* *= None*

The password to connect to the database.

Passing it in this separate attribute prevents it from being logged alongside the connection string.

If `None`, a password is expected to be present in [`url`](#atoti_directquery_jdbc.ConnectionConfig.url).

#### password\_parameter\_name *: [str](https://docs.python.org/3/library/stdtypes.html#str) | [None](https://docs.python.org/3/library/constants.html#None)* *= None*

The name of the query string parameter in which [`password`](#atoti_directquery_jdbc.ConnectionConfig.password) should be added to [`url`](#atoti_directquery_jdbc.ConnectionConfig.url).

Unused when [`password`](#atoti_directquery_jdbc.ConnectionConfig.password) is `None`, required when it is not.

#### query\_timeout *: Duration* *= datetime.timedelta(seconds=300)*

Timeout for queries performed on the external database outside feeding phases.

#### sql\_dialect\_key *: [str](https://docs.python.org/3/library/stdtypes.html#str)*

The key of the SQL dialect to use.

The dialect will typically be provided with an [`extra JAR`](./atoti.config.session_config#atoti.SessionConfig.extra_jars).

#### url *: [str](https://docs.python.org/3/library/stdtypes.html#str)*

The JDBC connection string.
