DuckDB.NET.Data.Full
1.1.3
dotnet add package DuckDB.NET.Data.Full --version 1.1.3
NuGet\Install-Package DuckDB.NET.Data.Full -Version 1.1.3
<PackageReference Include="DuckDB.NET.Data.Full" Version="1.1.3" />
paket add DuckDB.NET.Data.Full --version 1.1.3
#r "nuget: DuckDB.NET.Data.Full, 1.1.3"
// Install DuckDB.NET.Data.Full as a Cake Addin #addin nuget:?package=DuckDB.NET.Data.Full&version=1.1.3 // Install DuckDB.NET.Data.Full as a Cake Tool #tool nuget:?package=DuckDB.NET.Data.Full&version=1.1.3
DuckDB.NET
DuckDB bindings for C#
Usage
dotnet add package DuckDB.NET.Data.Full
using (var duckDBConnection = new DuckDBConnection("Data Source=file.db"))
{
duckDBConnection.Open();
using 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();
}
}
Known Issues
When debugging your project that uses DuckDB.NET library, you may get the following error: System.AccessViolationException: Attempted to read or write protected memory. This is often an indication that other memory is corrupt. The error happens due to debugger interaction with the native memory. For a workaround check out Debugger Options mess up debugging session during Marshalling
Documentation
Documentation is available at https://duckdb.net
Support
If you encounter a bug with the library Create an Issue. Join the DuckDB dotnet
channel for DuckDB.NET-related topics.
Contributors
Sponsors
A big thanks to DuckDB Labs and AWS Open Source Software Fund for sponsoring the project!
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 is compatible. 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. |
.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 (>= 1.1.3)
- System.Memory (>= 4.5.5)
- System.Runtime.CompilerServices.Unsafe (>= 6.0.0)
-
net6.0
- DuckDB.NET.Bindings.Full (>= 1.1.3)
-
net8.0
- DuckDB.NET.Bindings.Full (>= 1.1.3)
NuGet packages (7)
Showing the top 5 NuGet packages that depend on DuckDB.NET.Data.Full:
Package | Downloads |
---|---|
DuckDB.InteractiveExtension
DuckDB support for Polyglot Notebooks |
|
Microsoft.SemanticKernel.Connectors.DuckDB
DuckDB connector for Semantic Kernel plugins and semantic memory |
|
Querier.NET
Package Description |
|
Fast.Diagnostics.Traces.DuckDB
A fast agger |
|
FastBIRe.AP.DuckDB
A fast agger |
GitHub repositories (3)
Showing the top 3 popular GitHub repositories that depend on DuckDB.NET.Data.Full:
Repository | Stars |
---|---|
microsoft/semantic-kernel
Integrate cutting-edge LLM technology quickly and easily into your apps
|
|
DapperLib/Dapper
Dapper - a simple object mapper for .Net
|
|
dotnetcore/FreeSql
🦄 .NET aot orm, C# orm, VB.NET orm, Mysql orm, Postgresql orm, SqlServer orm, Oracle orm, Sqlite orm, Firebird orm, 达梦 orm, 人大金仓 orm, 神通 orm, 翰高 orm, 南大通用 orm, 虚谷 orm, 国产 orm, Clickhouse orm, DuckDB orm, TDengine orm, QuestDB orm, MsAccess orm.
|
Version | Downloads | Last updated |
---|---|---|
1.1.3 | 450 | 11/7/2024 |
1.1.2.1 | 17,672 | 10/21/2024 |
1.1.2-alpha.5 | 67 | 10/10/2024 |
1.1.1 | 62,825 | 9/24/2024 |
1.1.0.1 | 139,403 | 9/9/2024 |
1.0.2 | 56,345 | 7/22/2024 |
1.0.1 | 19,032 | 6/22/2024 |
1.0.0 | 32,223 | 6/3/2024 |
0.10.3 | 5,480 | 5/22/2024 |
0.10.2 | 4,130 | 4/21/2024 |
0.10.1.2 | 81,542 | 3/22/2024 |
0.10.1 | 24,823 | 3/18/2024 |
0.9.2 | 146,283 | 11/14/2023 |
0.9.1 | 37,872 | 10/13/2023 |
0.9.0.3 | 6,454 | 10/4/2023 |
0.9.0 | 1,140 | 10/2/2023 |
0.8.1 | 107,397 | 7/8/2023 |
0.8.0 | 18,521 | 5/17/2023 |
0.7.1 | 24,624 | 3/4/2023 |
0.6.1 | 1,009 | 1/8/2023 |
Added support for creating user-defined table valued functions.
Added support for passing LIST parameter types
Updated to DuckDB v1.1.3