https://github.com/danny-yamamoto/go-duckdb-example
Playing with DuckDB.
https://github.com/danny-yamamoto/go-duckdb-example
duckdb go olap sql
Last synced: 6 days ago
JSON representation
Playing with DuckDB.
- Host: GitHub
- URL: https://github.com/danny-yamamoto/go-duckdb-example
- Owner: danny-yamamoto
- Created: 2023-06-19T08:08:10.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-06-20T08:12:34.000Z (about 3 years ago)
- Last Synced: 2026-01-12T12:08:08.617Z (6 months ago)
- Topics: duckdb, go, olap, sql
- Language: Go
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# go-duckdb-example
Playing with DuckDB.
## Installation.
```bash
vscode ➜ /workspaces/go-duckdb-example (main) $ export PATH="/usr/bin:$PATH"
vscode ➜ /workspaces/go-duckdb-example (main) $ source ~/.bashrc
```
## Usage.
```bash
vscode ➜ /usr/bin $ pwd
/usr/bin
vscode ➜ /usr/bin $ ./duckdb
v0.8.1 6536a77232
Enter ".help" for usage hints.
Connected to a transient in-memory database.
Use ".open FILENAME" to reopen on a persistent database.
D select 43;
┌───────┐
│ 43 │
│ int32 │
├───────┤
│ 43 │
└───────┘
D .exit
vscode ➜ /usr/bin $
```