You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Otherwise you can set the Server, Database, UID, PWD, Port and Proto parameters.
18
+
#
19
+
# Possible parameters with default values:
20
+
#
21
+
# Url = # URL that points to a running ClickHouse instance, may include username, password, port, database, etc.
22
+
# Proto = # One of: http, https. When empty it is deduced from Url, or from Port and SSLMode: https if 443 or 8443 or SSLMode is not empty, http otherwise.
23
+
# Server = # IP or hostname of a server with a running ClickHouse instance on it. When empty it is deduced from URL.
24
+
# Host = # Alias for Server.
25
+
# Port = # Port on which the ClickHouse instance is listening. When empty it is deduced from Url, or from Proto: 8443 if https, 8123 otherwise.
26
+
# Path = /query # The URL path.
27
+
# Username = default
28
+
# UID = # Alias for Username.
29
+
# Password =
30
+
# PWD = # Alias for Password.
31
+
# Database = default # Database name.
32
+
# Timeout = 30 # Connection timeout in seconds.
33
+
# VerifyConnectionEarly = off # Verify the connection and credentials during SQLConnect and similar calls, otherwise it is done when querying the data.
34
+
# SSLMode = # Certificate verification method (for TLS/SSL connections, ignored in Windows), use `allow` to ignore self-signed and bad certificates.
35
+
# # Other values, including empty, enable strict verification
36
+
# PrivateKeyFile = # Path to private key file (for TLS/SSL connections, ignored in Windows)
37
+
# CertificateFile = # Path to certificate file (for TLS/SSL connections, ignored in Windows)
38
+
# CALocation = # Path to the file or directory containing the CA/root certificates (used by TLS/SSL connections, ignored in Windows)
39
+
# HugeIntAsString = # Report integer column types that may underflow or overflow 64-bit signed integer (SQL_BIGINT) as a String/SQL_VARCHAR
40
+
# DriverLog = off # Enable or disable the extended driver logging (enabled by default for Debug builds)
41
+
# DriverLogFile = \temp\clickhouse-odbc-driver.log # or /tmp/clickhouse-odbc-driver.log on Linux and macOS.
42
+
# # Path to the extended driver log file
43
+
# AutoSessionId = off # Auto generate session_id required to use some features of CH (e.g. TEMPORARY TABLE)
44
+
# ClientName = # Sets additional information about the calling application. This string will be used as a prefix for the User-Agent header.
0 commit comments