Skip to content

Commit c9fceec

Browse files
committed
Release notes for 0.10.3
1 parent c6437cc commit c9fceec

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

DuckDB.NET.Bindings/Bindings.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<Description>DuckDB Bindings for C#.</Description>
5-
<PackageReleaseNotes>Update to DuckDB 0.10.1.</PackageReleaseNotes>
5+
<PackageReleaseNotes>Update to DuckDB 0.10.3.</PackageReleaseNotes>
66
<RootNamespace>DuckDB.NET.Native</RootNamespace>
77
<RuntimeIdentifiers>win-x64;linux-x64;linux-arm64;osx</RuntimeIdentifiers>
88
<DuckDbArtifactRoot Condition=" '$(DuckDbArtifactRoot)' == '' ">https://github.com/duckdb/duckdb/releases/download/v0.10.3</DuckDbArtifactRoot>

DuckDB.NET.Data/Data.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
<PropertyGroup>
44
<Description>DuckDB ADO.NET Provider for C#.</Description>
55
<PackageReleaseNotes>
6-
Update to DuckDB 0.10.1.
6+
Update to DuckDB 0.10.3.
77

8-
Added support for reading TimeTz types.
8+
Added support for writing decimal, Guid and DateTimeOffset values when using managed Appender.
99

10-
Added support for reading Array types.
10+
Implemented DuckDBConnection.GetSchema (By @hazzik)
1111
</PackageReleaseNotes>
1212
<SignAssembly>True</SignAssembly>
1313
<AssemblyOriginatorKeyFile>..\keyPair.snk</AssemblyOriginatorKeyFile>

DuckDB.NET.Data/DuckDBCommand.cs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,13 @@ public class DuckDBCommand : DbCommand
2424
public override bool DesignTimeVisible { get; set; }
2525
public override UpdateRowSource UpdatedRowSource { get; set; }
2626

27+
/// <summary>
28+
/// A flag to determine whether to use streaming mode or not when executing a query. Defaults to false.
29+
/// In streaming mode DuckDB will use less RAM but query execution might be slower. Applies only queries that return a result-set.
30+
/// </summary>
31+
/// <remarks>
32+
/// Streaming mode uses `duckdb_execute_prepared_streaming` and `duckdb_stream_fetch_chunk`, non-streaming (materialized) mode uses `duckdb_execute_prepared` and `duckdb_result_get_chunk`.
33+
/// </remarks>
2734
public bool UseStreamingMode { get; set; } = false;
2835

2936
private string commandText = string.Empty;

0 commit comments

Comments
 (0)