Windows Registry Editor Version 5.00 ; ClickHouse ODBC driver 1.5.5 - manual driver registration. ; https://packages.clickhouse.com/odbc/ ; ; Use this when deploying the driver without running the MSI: ; 1. Put clickhouseodbc.dll and clickhouseodbcw.dll in a permanent ; directory, by default C:\Program Files\ClickHouse ODBC Driver\. ; 2. If you used a different directory, edit the four "Driver"/"Setup" ; paths below. Every backslash must be doubled, as shown. ; 3. Import from an elevated prompt: reg import clickhouse-odbc.reg ; ; These keys are the 64-bit registry view, matching the win64 driver. A ; 32-bit driver belongs under SOFTWARE\WOW6432Node\ODBC\... instead. [HKEY_LOCAL_MACHINE\SOFTWARE\ODBC\ODBCINST.INI\ODBC Drivers] "ClickHouse ODBC Driver (ANSI)"="Installed" "ClickHouse ODBC Driver (Unicode)"="Installed" [HKEY_LOCAL_MACHINE\SOFTWARE\ODBC\ODBCINST.INI\ClickHouse ODBC Driver (ANSI)] "Description"="ODBC Driver (ANSI) for ClickHouse" "Driver"="C:\\Program Files\\ClickHouse ODBC Driver\\clickhouseodbc.dll" "Setup"="C:\\Program Files\\ClickHouse ODBC Driver\\clickhouseodbc.dll" "DriverODBCVer"="03.80" "ConnectFunctions"="YYN" "APILevel"="1" "SQLLevel"="1" "FileUsage"="0" "UsageCount"=dword:00000001 [HKEY_LOCAL_MACHINE\SOFTWARE\ODBC\ODBCINST.INI\ClickHouse ODBC Driver (Unicode)] "Description"="ODBC Driver (Unicode) for ClickHouse" "Driver"="C:\\Program Files\\ClickHouse ODBC Driver\\clickhouseodbcw.dll" "Setup"="C:\\Program Files\\ClickHouse ODBC Driver\\clickhouseodbcw.dll" "DriverODBCVer"="03.80" "ConnectFunctions"="YYN" "APILevel"="1" "SQLLevel"="1" "FileUsage"="0" "UsageCount"=dword:00000001 ; A sample data source. Point Url at your server, or replace it with the ; Server, Port, Database, UID and PWD values. [HKEY_LOCAL_MACHINE\SOFTWARE\ODBC\ODBC.INI\ODBC Data Sources] "ClickHouse DSN (Unicode)"="ClickHouse ODBC Driver (Unicode)" [HKEY_LOCAL_MACHINE\SOFTWARE\ODBC\ODBC.INI\ClickHouse DSN (Unicode)] "Description"="DSN (localhost) for ClickHouse ODBC Driver (Unicode)" "Driver"="ClickHouse ODBC Driver (Unicode)" "Url"="https://default:password@localhost:8443/query?database=default"