Skip to content

Commit

Permalink
typos
Browse files Browse the repository at this point in the history
  • Loading branch information
TinyTinni authored Nov 9, 2024
1 parent 51fae31 commit b6a7063
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# ![image](./logo/logo_64.png) A DuckDB Driver Plugin for Qt
[![CMake](https://github.com/TinyTinni/QtDuckDBDriver/actions/workflows/cmake.yml/badge.svg)](https://github.com/TinyTinni/QtDuckDBDriver/actions/workflows/cmake.yml)
Implements a [driver plugin for Qt's SQL Databases](https://doc.qt.io/qt-6/sql-driver.html) for [DuckDB](https://duckdb.org/).
Just copy the .dll/.so to your Qt plugin file and you can add a "DUCKDB" database at any time. No other dependencies are required. You can use the full capabilities of DuckDB in your Qt program.
Just copy the .dll/.so to your Qt plugin directory and you can add a "DUCKDB" database at any time. No other dependencies are required. You can use the full capabilities of DuckDB in your Qt program.

It also enables you to use duckdb in an easy way with Qt and Qt widgets, see the example below.

Exmaple for creating a in memory database:
Example for creating a in memory database:
```cpp
QSqlDatabase db = QSqlDatabase::addDatabase("DUCKDB");
db.setDatabaseName("test.db"); // creates a persistent database file "test.db"
Expand Down

0 comments on commit b6a7063

Please sign in to comment.