• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

Giorgi / DuckDB.NET / 21786556530

07 Feb 2026 08:39PM UTC coverage: 89.155% (-0.07%) from 89.223%
21786556530

push

github

Giorgi
Added support for clearing in-progress adapter

Requires DuckDB 1.5

1199 of 1393 branches covered (86.07%)

Branch coverage included in aggregate %.

6 of 8 new or added lines in 1 file covered. (75.0%)

193 existing lines in 43 files now uncovered.

2336 of 2572 relevant lines covered (90.82%)

557295.56 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

66.67
/DuckDB.NET.Data/DuckDBClientFactory.cs
1
namespace DuckDB.NET.Data;
2

3
public class DuckDBClientFactory : DbProviderFactory
4
{
5
    public const string ProviderInvariantName = "DuckDB.NET.Data";
6

7
    #region Static Properties
8

9
    public static readonly DuckDBClientFactory Instance = new();
3✔
10

11
    #endregion
12

13
    #region Properties
14

UNCOV
15
    public override bool CanCreateDataSourceEnumerator => false;
×
16

17
    #endregion
18

19
    #region Constructors
20

21
    private DuckDBClientFactory() { }
6✔
22

23
    #endregion
24

25
    #region Methods
26

27
    public override DbCommand CreateCommand() => new DuckDBCommand();
3✔
28

UNCOV
29
    public override DbCommandBuilder CreateCommandBuilder() => throw new NotImplementedException();
×
30

31
    public override DbConnection CreateConnection() => new DuckDBConnection();
3✔
32

33
    public override DbConnectionStringBuilder CreateConnectionStringBuilder() => new DuckDBConnectionStringBuilder();
3✔
34

UNCOV
35
    public override DbDataAdapter CreateDataAdapter() => throw new NotImplementedException();
×
36

37
    public override DbParameter CreateParameter() => new DuckDBParameter();
3✔
38

39
    #endregion
40
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc