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 2
2
3
3
<PropertyGroup >
4
4
<Description >DuckDB Bindings for C#.</Description >
5
- <PackageReleaseNotes >Update to DuckDB 0.10.1 .</PackageReleaseNotes >
5
+ <PackageReleaseNotes >Update to DuckDB 0.10.3 .</PackageReleaseNotes >
6
6
<RootNamespace >DuckDB.NET.Native</RootNamespace >
7
7
<RuntimeIdentifiers >win-x64;linux-x64;linux-arm64;osx</RuntimeIdentifiers >
8
8
<DuckDbArtifactRoot Condition =" '$(DuckDbArtifactRoot)' == '' " >https://github.com/duckdb/duckdb/releases/download/v0.10.3</DuckDbArtifactRoot >
Original file line number Diff line number Diff line change 3
3
<PropertyGroup >
4
4
<Description >DuckDB ADO.NET Provider for C#.</Description >
5
5
<PackageReleaseNotes >
6
- Update to DuckDB 0.10.1 .
6
+ Update to DuckDB 0.10.3 .
7
7
8
- Added support for reading TimeTz types .
8
+ Added support for writing decimal, Guid and DateTimeOffset values when using managed Appender .
9
9
10
- Added support for reading Array types.
10
+ Implemented DuckDBConnection.GetSchema (By @hazzik)
11
11
</PackageReleaseNotes >
12
12
<SignAssembly >True</SignAssembly >
13
13
<AssemblyOriginatorKeyFile >..\keyPair.snk</AssemblyOriginatorKeyFile >
Original file line number Diff line number Diff line change @@ -24,6 +24,13 @@ public class DuckDBCommand : DbCommand
24
24
public override bool DesignTimeVisible { get ; set ; }
25
25
public override UpdateRowSource UpdatedRowSource { get ; set ; }
26
26
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>
27
34
public bool UseStreamingMode { get ; set ; } = false ;
28
35
29
36
private string commandText = string . Empty ;
You can’t perform that action at this time.
0 commit comments