DuckDB.NET.Data.Full
0.6.1
See the version list below for details.
dotnet add package DuckDB.NET.Data.Full --version 0.6.1
NuGet\Install-Package DuckDB.NET.Data.Full -Version 0.6.1
<PackageReference Include="DuckDB.NET.Data.Full" Version="0.6.1" />
<PackageVersion Include="DuckDB.NET.Data.Full" Version="0.6.1" />
<PackageReference Include="DuckDB.NET.Data.Full" />
paket add DuckDB.NET.Data.Full --version 0.6.1
#r "nuget: DuckDB.NET.Data.Full, 0.6.1"
#:package DuckDB.NET.Data.Full@0.6.1
#addin nuget:?package=DuckDB.NET.Data.Full&version=0.6.1
#tool nuget:?package=DuckDB.NET.Data.Full&version=0.6.1
DuckDB.NET
DuckDB bindings for C#
Note: The library is in early stage and contributions are more than wellcome.
Usage
Support
If you encounter a bug with the library Create an Issue. Join the DuckDB .Net Channel for DuckDB.NET related topics.
Getting Started
There are two ways to work with DuckDB from C#: You can use ADO.NET Provider or use low-level bindings library for DuckDB. The ADO.NET Provider is built on top of the low-level library and is the recommended and most straightforward approach to work with DuckDB.
In both cases, there are two NuGet packages available: The Full package that includes DuckDB native library and a managed-only library that doesn't include a native library.
ADO.NET Provider | Includes DuckDB library | |
---|---|---|
Yes | DuckDB.NET.Data | DuckDB.NET.Data.Full |
No | DuckDB.NET.Bindings | DuckDB.NET.Bindings.Full |
Using ADO.NET Provider
dotnet add package DuckDB.NET.Data.Full
using (var duckDBConnection = new DuckDBConnection("Data Source=file.db"))
{
duckDBConnection.Open();
var command = duckDBConnection.CreateCommand();
command.CommandText = "CREATE TABLE integers(foo INTEGER, bar INTEGER);";
var executeNonQuery = command.ExecuteNonQuery();
command.CommandText = "INSERT INTO integers VALUES (3, 4), (5, 6), (7, 8);";
executeNonQuery = command.ExecuteNonQuery();
command.CommandText = "Select count(*) from integers";
var executeScalar = command.ExecuteScalar();
command.CommandText = "SELECT foo, bar FROM integers";
var reader = command.ExecuteReader();
PrintQueryResults(reader);
}
private static void PrintQueryResults(DbDataReader queryResult)
{
for (var index = 0; index < queryResult.FieldCount; index++)
{
var column = queryResult.GetName(index);
Console.Write($"{column} ");
}
Console.WriteLine();
while (queryResult.Read())
{
for (int ordinal = 0; ordinal < queryResult.FieldCount; ordinal++)
{
var val = queryResult.GetInt32(ordinal);
Console.Write(val);
Console.Write(" ");
}
Console.WriteLine();
}
}
Efficient data loading with Appender
Appenders are the most efficient way of loading data into DuckDB. Starting from version 0.6.1, you can use a managed Appender instead of using low-level DuckDB Api:
using var connection = new DuckDBConnection("DataSource=:memory:");
connection.Open();
using (var duckDbCommand = connection.CreateCommand())
{
var table = "CREATE TABLE AppenderTest(foo INTEGER, bar INTEGER);";
duckDbCommand.CommandText = table;
duckDbCommand.ExecuteNonQuery();
}
var rows = 10;
using (var appender = connection.CreateAppender("managedAppenderTest"))
{
for (var i = 0; i < rows; i++)
{
var row = appender.CreateRow();
row.AppendValue(i).AppendValue(i+2).EndRow();
}
}
Parameterized queries and DuckDB native types.
Starting from version 0.4.0.10, DuckDB.NET.Data supports executing parameterized queries and reading all built-in native duckdb types:
using var connection = new DuckDBConnection("DataSource=:memory:");
connection.Open();
var command = connection.CreateCommand();
command.CommandText = "SELECT * from integers where foo > ?;";
command.Parameters.Add(new new DuckDBParameter(3));
using var reader = command.ExecuteReader();
To read DuckDB specific native types use DuckDBDataReader.GetFieldValue<T>
method. The following table shows the mapping between DuckDB native type and DuckDB.NET.Data .Net type:
DuckDB Type | .Net Type |
---|---|
INTERVAL | DuckDBInterval |
DATE | DuckDBDateOnly |
TIME | DuckDBTimeOnly |
HUGEINT | BigInteger |
Dapper
You can also use Dapper to query data:
var item = duckDBConnection.Query<FooBar>("SELECT foo, bar FROM integers");
In-Memory database
For in-memory database use Data Source=:memory:
connection string. When using in-memory database no data is persisted on disk.
Use low level bindings library
dotnet add package DuckDB.NET.Bindings.Full
var result = Startup.DuckDBOpen(null, out var database);
using (database)
{
result = Startup.DuckDBConnect(database, out var connection);
using (connection)
{
result = Query.DuckDBQuery(connection, "CREATE TABLE integers(foo INTEGER, bar INTEGER);", out var queryResult);
result = Query.DuckDBQuery(connection, "INSERT INTO integers VALUES (3, 4), (5, 6), (7, 8);", out queryResult);
result = Query.DuckDBQuery(connection, "SELECT foo, bar FROM integers", out queryResult);
PrintQueryResults(queryResult);
result = Query.DuckDBPrepare(connection, "INSERT INTO integers VALUES (?, ?)", out var insertStatement);
using (insertStatement)
{
result = Query.DuckDBBindInt32(insertStatement, 1, 42); // the parameter index starts counting at 1!
result = Query.DuckDBBindInt32(insertStatement, 2, 43);
result = Query.DuckDBExecutePrepared(insertStatement, out var _);
}
result = Query.DuckDBPrepare(connection, "SELECT * FROM integers WHERE foo = ?", out var selectStatement);
using (selectStatement)
{
result = Query.DuckDBBindInt32(selectStatement, 1, 42);
result = Query.DuckDBExecutePrepared(selectStatement, out queryResult);
}
PrintQueryResults(queryResult);
// clean up
Query.DuckDBDestroyResult(out queryResult);
}
}
private static void PrintQueryResults(DuckDBResult queryResult)
{
var columnCount = Query.DuckDBColumnCount(queryResult);
for (var index = 0; index < columnCount; index++)
{
var columnName = Query.DuckDBColumnName(queryResult, index).ToManagedString(false);
Console.Write($"{columnName} ");
}
Console.WriteLine();
for (long row = 0; row < queryResult.RowCount; row++)
{
for (long column = 0; column < queryResult.ColumnCount; column++)
{
var val = Types.DuckDBValueInt32(queryResult, column, row);
Console.Write(val);
Console.Write(" ");
}
Console.WriteLine();
}
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- DuckDB.NET.Bindings.Full (>= 0.6.1)
-
net6.0
- DuckDB.NET.Bindings.Full (>= 0.6.1)
NuGet packages (19)
Showing the top 5 NuGet packages that depend on DuckDB.NET.Data.Full:
Package | Downloads |
---|---|
Microsoft.SemanticKernel.Connectors.DuckDB
DuckDB connector for Semantic Kernel plugins and semantic memory |
|
DuckDB.InteractiveExtension
DuckDB support for Polyglot Notebooks |
|
FreeSql.Provider.Duckdb
FreeSql + DuckDB is a fast in-process analytical database,supports .NetCore、.NetFramework4.6.1+ |
|
Querier.NET
Package Description |
|
Kurrent.Surge.DuckDB
Package Description |
GitHub repositories (7)
Showing the top 7 popular GitHub repositories that depend on DuckDB.NET.Data.Full:
Repository | Stars |
---|---|
DapperLib/Dapper
Dapper - a simple object mapper for .Net
|
|
DotNetNext/SqlSugar
.Net aot ORM SqlServer ORM Mongodb ORM MySql 瀚高 Postgresql ORM DB2 Hana 高斯 Duckdb C# VB.NET Sqlite ORM Oracle ORM Mysql Orm 虚谷数据库 达梦 ORM 人大金仓 ORM 神通ORM C# ORM , C# ORM .NET ORM NET9 ORM .NET8 ORM ClickHouse ORM QuestDb ,TDengine ORM,OceanBase ORM,GaussDB ORM,Tidb ORM Object/Relational Mapping
|
|
kurrent-io/KurrentDB
KurrentDB is a database that's engineered for modern software applications and event-driven architectures. Its event-native design simplifies data modeling and preserves data integrity while the integrated streaming engine solves distributed messaging challenges and ensures data consistency.
|
|
dotnetcore/FreeSql
.NET aot orm, VB.NET/C# orm, Mysql/PostgreSQL/SqlServer/Oracle orm, Sqlite/Firebird/Clickhouse/DuckDB orm, 达梦/金仓/虚谷/翰高/高斯 orm, 神通 orm, 南大通用 orm, 国产 orm, TDengine orm, QuestDB orm, MsAccess orm.
|
|
dotnet/interactive
.NET Interactive combines the power of .NET with many other languages to create notebooks, REPLs, and embedded coding experiences. Share code, explore data, write, and learn across your apps in ways you couldn't before.
|
|
brianluft/sqlnotebook
SQL Notebook — Casual data exploration in SQL
|
|
Hitmasu/OpenCNPJ
API pública de busca e consulta de CNPJs do Brasil
|
Version | Downloads | Last Updated |
---|---|---|
1.3.2 | 30,094 | 7/8/2025 |
1.3.0 | 29,326 | 6/3/2025 |
1.2.1 | 115,830 | 3/5/2025 |
1.2.1-alpha.8 | 238 | 2/19/2025 |
1.2.0 | 85,375 | 2/6/2025 |
1.1.3 | 275,782 | 11/7/2024 |
1.1.2.1 | 77,016 | 10/21/2024 |
1.1.2-alpha.5 | 125 | 10/10/2024 |
1.1.1 | 91,551 | 9/24/2024 |
1.1.0.1 | 158,854 | 9/9/2024 |
1.0.2 | 76,079 | 7/22/2024 |
1.0.1 | 27,644 | 6/22/2024 |
1.0.0 | 48,055 | 6/3/2024 |
0.10.3 | 15,794 | 5/22/2024 |
0.10.2 | 5,702 | 4/21/2024 |
0.10.1.2 | 124,706 | 3/22/2024 |
0.10.1 | 26,797 | 3/18/2024 |
0.9.2 | 159,066 | 11/14/2023 |
0.9.1 | 40,252 | 10/13/2023 |
0.9.0.3 | 6,662 | 10/4/2023 |
0.9.0 | 1,216 | 10/2/2023 |
0.8.1 | 112,433 | 7/8/2023 |
0.8.0 | 19,651 | 5/17/2023 |
0.7.1 | 25,905 | 3/4/2023 |
0.6.1 | 1,436 | 1/8/2023 |
Added managed implementation for DuckDB Appender.