Skip to content

Commit

Permalink
Release notes for 0.10.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Giorgi committed May 22, 2024
1 parent c6437cc commit c9fceec
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
2 changes: 1 addition & 1 deletion DuckDB.NET.Bindings/Bindings.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<Description>DuckDB Bindings for C#.</Description>
<PackageReleaseNotes>Update to DuckDB 0.10.1.</PackageReleaseNotes>
<PackageReleaseNotes>Update to DuckDB 0.10.3.</PackageReleaseNotes>
<RootNamespace>DuckDB.NET.Native</RootNamespace>
<RuntimeIdentifiers>win-x64;linux-x64;linux-arm64;osx</RuntimeIdentifiers>
<DuckDbArtifactRoot Condition=" '$(DuckDbArtifactRoot)' == '' ">https://github.com/duckdb/duckdb/releases/download/v0.10.3</DuckDbArtifactRoot>
Expand Down
6 changes: 3 additions & 3 deletions DuckDB.NET.Data/Data.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
<PropertyGroup>
<Description>DuckDB ADO.NET Provider for C#.</Description>
<PackageReleaseNotes>
Update to DuckDB 0.10.1.
Update to DuckDB 0.10.3.

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

Added support for reading Array types.
Implemented DuckDBConnection.GetSchema (By @hazzik)
</PackageReleaseNotes>
<SignAssembly>True</SignAssembly>
<AssemblyOriginatorKeyFile>..\keyPair.snk</AssemblyOriginatorKeyFile>
Expand Down
7 changes: 7 additions & 0 deletions DuckDB.NET.Data/DuckDBCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,13 @@ public class DuckDBCommand : DbCommand
public override bool DesignTimeVisible { get; set; }
public override UpdateRowSource UpdatedRowSource { get; set; }

/// <summary>
/// A flag to determine whether to use streaming mode or not when executing a query. Defaults to false.
/// In streaming mode DuckDB will use less RAM but query execution might be slower. Applies only queries that return a result-set.
/// </summary>
/// <remarks>
/// 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`.
/// </remarks>
public bool UseStreamingMode { get; set; } = false;

private string commandText = string.Empty;
Expand Down

0 comments on commit c9fceec

Please sign in to comment.