mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-20 14:42:02 +00:00
1.3 KiB
1.3 KiB
ODBC
Allows ClickHouse to connect to external databases via ODBC.
To implement ODBC connection, ClickHouse uses the separate program clickhouse-odbc-bridge
. ClickHouse starts this program automatically when it is required. The ODBC bridge program is installed by the same package with the ClickHouse server.
This engine supports the Nullable data type.
Creating a Table
CREATE TABLE [IF NOT EXISTS] [db.]table_name ENGINE = ODBC(connection_settings, external_database, external_table)
Engine Parameters
connection_settings
— Name of the section with connection settings in theodbc.ini
file.external_database
— Database in an external DBMS.external_table
— A name of the table inexternal_database
.
Usage Example
Some examples of how to use external dictionaries through ODBC you can find in the ODBC section of external dictionaries configuration.