Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/duckdb/duckdb-odbc
ODBC Driver for DuckDB
https://github.com/duckdb/duckdb-odbc
duckdb odbc olap sql
Last synced: about 13 hours 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 (7 months ago)
- Default Branch: main
- Last Pushed: 2024-10-25T00:33:39.000Z (25 days ago)
- Last Synced: 2024-10-25T06:39:27.955Z (24 days ago)
- Topics: duckdb, odbc, olap, sql
- Language: C++
- Homepage: https://duckdb.org/docs/api/odbc/overview
- Size: 33.1 MB
- Stars: 8
- Watchers: 0
- Forks: 4
- Open Issues: 6
-
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'
```