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
If the registration is successful, then Apache Arrow Flight SQL ODBC Driver
38
+
should show as an available ODBC driver in the x64 ODBC Driver Manager.
39
+
40
+
## Steps to Generate Windows Installer
41
+
1. Build with `ARROW_FLIGHT_SQL_ODBC=ON` and `ARROW_FLIGHT_SQL_ODBC_INSTALLER=ON`.
42
+
2. `cd` to `build` folder.
43
+
3. Run `cpack`.
44
+
45
+
If the generation is successful, you will find `Apache Arrow Flight SQL ODBC-<version>-win64.msi` generated under the `build` folder.
46
+
47
+
48
+
## Steps to Enable Logging
49
+
Arrow Flight SQL ODBC driver uses Arrow's internal logging framework. By default, the log messages are printed to the terminal.
50
+
1. Set environment variable `ARROW_ODBC_LOG_LEVEL` to any of the following valid values to enable logging. If `ARROW_ODBC_LOG_LEVEL` is set to a non-empty string that does not match any of the following values, `DEBUG` level is used by default.
51
+
52
+
The characters are case-insensitive.
53
+
- TRACE
54
+
- DEBUG
55
+
- INFO
56
+
- WARNING
57
+
- ERROR
58
+
- FATAL
59
+
60
+
The Windows ODBC driver currently does not support writing log files. `ARROW_USE_GLOG` is required to write log files, and `ARROW_USE_GLOG` is disabled on Windows platform since plasma using `glog` is not fully tested on windows.
61
+
62
+
Note: GH-47670 running more than 1 tests with logging enabled is not fully supported.
0 commit comments