File tree Expand file tree Collapse file tree 3 files changed +11
-4
lines changed
Expand file tree Collapse file tree 3 files changed +11
-4
lines changed Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff 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 ;
You can’t perform that action at this time.
0 commit comments