Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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'
```