SharpCoreDB.Data.Provider 1.4.1

dotnet add package SharpCoreDB.Data.Provider --version 1.4.1
                    
NuGet\Install-Package SharpCoreDB.Data.Provider -Version 1.4.1
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="SharpCoreDB.Data.Provider" Version="1.4.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="SharpCoreDB.Data.Provider" Version="1.4.1" />
                    
Directory.Packages.props
<PackageReference Include="SharpCoreDB.Data.Provider" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add SharpCoreDB.Data.Provider --version 1.4.1
                    
#r "nuget: SharpCoreDB.Data.Provider, 1.4.1"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package SharpCoreDB.Data.Provider@1.4.1
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=SharpCoreDB.Data.Provider&version=1.4.1
                    
Install as a Cake Addin
#tool nuget:?package=SharpCoreDB.Data.Provider&version=1.4.1
                    
Install as a Cake Tool

SharpCoreDB.Data.Provider v1.4.1

ADO.NET Data Provider for SharpCoreDB

Complete ADO.NET provider enabling standard database connectivity patterns with SharpCoreDB's encryption and performance.

✨ What's New in v1.4.1

  • ✅ Inherits metadata improvements from SharpCoreDB v1.4.1
  • ✅ Enterprise connectivity features
  • ✅ Full ADO.NET compatibility
  • ✅ Zero breaking changes

🚀 Key Features

  • ADO.NET Compatibility: DbConnection, DbCommand, DbDataReader implementations
  • Standard Patterns: Connection pooling, parameterized queries, transactions
  • Encryption: AES-256-GCM transparent encryption
  • Performance: High-speed data access with caching
  • Production Ready: Enterprise-grade reliability

💻 Quick Example

using System.Data;
using SharpCoreDB.Data.Provider;

using var connection = new SharpCoreDbConnection("mydb.scdb", "password");
connection.Open();

using var command = connection.CreateCommand();
command.CommandText = "SELECT * FROM users WHERE id = @id";
command.Parameters.Add("@id", 1);

using var reader = command.ExecuteReader();
while (reader.Read())
{
    Console.WriteLine($"Name: {reader["name"]}");
}

📚 Documentation

📦 Installation

dotnet add package SharpCoreDB.Data.Provider --version 1.4.1

Requires: SharpCoreDB v1.4.1+


Version: 1.4.1 | Status: ✅ Production Ready

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on SharpCoreDB.Data.Provider:

Package Downloads
SharpCoreDB.Provider.YesSql

YesSql provider for SharpCoreDB encrypted database engine. Built for .NET 10 with C# 14. Supports Windows, Linux, macOS, Android, iOS, and IoT/embedded devices with platform-specific optimizations.

SharpCoreDB.Provider.Sync

Dotmim.Sync provider for SharpCoreDB — enables bidirectional synchronization between SharpCoreDB and any Dotmim.Sync-supported database (PostgreSQL, SQL Server, SQLite, MySQL). Supports multi-tenant filtering for local-first AI agent architectures. Built for .NET 10 with C# 14.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.4.1 127 2/28/2026
1.3.5 113 2/21/2026
1.3.0 98 2/14/2026
1.1.1 100 2/8/2026
1.1.0 101 2/8/2026
1.0.6 102 2/1/2026
1.0.5 97 1/11/2026
1.0.2 97 1/3/2026
1.0.1 97 1/3/2026

v1.4.1: Inherit metadata improvements from SharpCoreDB v1.4.1. ADO.NET provider with enterprise connectivity features.