https://github.com/duckdb/duckdb-odbc
ODBC Driver for DuckDB
https://github.com/duckdb/duckdb-odbc
duckdb odbc olap sql
Last synced: 11 months ago
JSON representation
ODBC Driver for DuckDB
- Host: GitHub
- URL: https://github.com/duckdb/duckdb-odbc
- Owner: duckdb
- Created: 2024-05-01T06:47:36.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2025-05-09T07:26:37.000Z (11 months ago)
- Last Synced: 2025-05-09T08:33:51.924Z (11 months ago)
- Topics: duckdb, odbc, olap, sql
- Language: C++
- Homepage: https://duckdb.org/docs/clients/odbc
- Size: 38.3 MB
- Stars: 28
- Watchers: 4
- Forks: 12
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Running the ODBC Client and Tests
#### Build the ODBC client (from within the main DuckDB repository)
```bash
BUILD_ODBC=1 DISABLE_SANITIZER=1 make debug -j
```
#### Run the ODBC Unit Tests
The ODBC tests are written with the catch framework. To run the tests, run the following command from the main DuckDB repository:
```bash
build/debug/test/test_odbc
```
You can also individually run the tests by specifying the test name as an argument to the test executable:
```bash
build/debug/test/test_odbc 'Test ALTER TABLE statement'
```