File tree Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -77,6 +77,19 @@ fn main() -> Result<()> {
77
77
}
78
78
```
79
79
80
+ ## Examples
81
+
82
+ The following [ examples] ( crates/duckdb/examples ) demonstrate various features and use cases of duckdb-rs:
83
+
84
+ - ** basic** - Basic usage including creating tables, inserting data, and querying with and without Arrow.
85
+ - ** appender** - Bulk data insertion using the appender API with transactions.
86
+ - ** parquet** - Reading Parquet files directly using DuckDB's Parquet extension.
87
+ - ** repl** - Interactive SQL REPL.
88
+ - ** hello-ext** - A loadable DuckDB extension using the legacy extension API.
89
+ - ** hello-ext-capi** - A loadable DuckDB extension using the modern extension API.
90
+
91
+ Run any example with ` cargo run --example <name> ` .
92
+
80
93
## Feature flags
81
94
82
95
The ` duckdb ` crate provides a number of Cargo features that can be enabled to add functionality:
You can’t perform that action at this time.
0 commit comments