Linger.DataAccess.Sqlite
1.4.2
.NET 8.0
This package targets .NET 8.0. The package is compatible with this framework or higher.
.NET Framework 4.7.2
This package targets .NET Framework 4.7.2. The package is compatible with this framework or higher.
There is a newer prerelease version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package Linger.DataAccess.Sqlite --version 1.4.2
NuGet\Install-Package Linger.DataAccess.Sqlite -Version 1.4.2
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="Linger.DataAccess.Sqlite" Version="1.4.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Linger.DataAccess.Sqlite" Version="1.4.2" />
<PackageReference Include="Linger.DataAccess.Sqlite" />
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 Linger.DataAccess.Sqlite --version 1.4.2
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Linger.DataAccess.Sqlite, 1.4.2"
#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 Linger.DataAccess.Sqlite@1.4.2
#: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=Linger.DataAccess.Sqlite&version=1.4.2
#tool nuget:?package=Linger.DataAccess.Sqlite&version=1.4.2
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Linger.DataAccess.Sqlite
SQLite database access library with SQLite-specific optimizations and factory methods.
Features
- Factory methods for easy database creation
- Security-first: Parameterized queries prevent SQL injection
- SQLite optimizations: VACUUM, ANALYZE, and performance features
- Async support: Full async/await with CancellationToken
- Database management: Backup, restore, and schema operations
- Supports core batch query helpers from Linger.DataAccess (see core README)
Supported .NET Versions
- .NET 10.0
- .NET 9.0
- .NET 8.0
- .NET Framework 4.7.2+
Installation
dotnet add package Linger.DataAccess.Sqlite
Basic Usage
using Linger.DataAccess.Sqlite;
var fileDb = SqliteHelper.CreateFileDatabase("myapp.db");
// Parameterized query
var users = fileDb.Query("SELECT * FROM users WHERE age > @age", new SQLiteParameter("@age", 18));
// Batch query (delegates to core implementation)
var ids = Enumerable.Range(1, 3000).Select(i => i.ToString()).ToList();
var dt = fileDb.QueryInBatches("SELECT * FROM users WHERE id IN ({0})", ids); // default batchSize=1000
// SQLite specific maintenance
await fileDb.VacuumDatabaseAsync();
await fileDb.AnalyzeDatabaseAsync();
SQLite Specific APIs
await sqlite.VacuumDatabaseAsync();
await sqlite.AnalyzeDatabaseAsync();
await sqlite.BackupDatabaseAsync("backup.db");
var tables = await sqlite.GetTableNamesAsync();
bool exists = await sqlite.TableExistsAsync("users");
Async Implementation ✅
All async methods use true asynchronous I/O:
// ✅ TRUE ASYNC - All methods use ADO.NET async APIs
public async Task<bool> ExistsAsync(string sql, CancellationToken ct = default)
{
var count = await FindCountBySqlAsync(sql).ConfigureAwait(false);
return count > 0;
}
public async Task<bool> BackupDatabaseAsync(string backupPath, CancellationToken ct = default)
{
using var connection = new SQLiteConnection(ConnString);
await connection.OpenAsync(ct).ConfigureAwait(false); // True async
// ... backup logic
}
Performance benefits:
- Supports 10,000+ concurrent operations without thread pool exhaustion
- 90%+ reduction in memory usage vs pseudo-async
- Full cancellation support during I/O operations
Best Practices
- Use async methods for all I/O operations - True async implementation ensures optimal scalability
- Always pass CancellationToken to async methods for proper cancellation support
- Prefer parameterized queries
- Run VACUUM / ANALYZE periodically
- Adjust batchSize only if needed for extremely large IN lists
- Use transactions for multi-statement changes
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 is compatible. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. 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. |
| .NET Framework | net472 is compatible. net48 was computed. net481 was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
.NETFramework 4.7.2
- Linger.DataAccess (>= 1.4.2)
- System.Data.SQLite.Core (>= 1.0.119)
-
net10.0
- Linger.DataAccess (>= 1.4.2)
- System.Data.SQLite.Core (>= 1.0.119)
-
net8.0
- Linger.DataAccess (>= 1.4.2)
- System.Data.SQLite.Core (>= 1.0.119)
-
net9.0
- Linger.DataAccess (>= 1.4.2)
- System.Data.SQLite.Core (>= 1.0.119)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 1.4.4-preview | 77 | 6/16/2026 |
| 1.4.3-preview | 86 | 6/15/2026 |
| 1.4.2 | 96 | 5/20/2026 |
| 1.4.1-preview | 100 | 5/12/2026 |
| 1.4.0 | 92 | 5/6/2026 |
| 1.3.3-preview | 83 | 5/5/2026 |
| 1.3.2-preview | 92 | 4/29/2026 |
| 1.3.1-preview | 91 | 4/28/2026 |
| 1.3.0-preview | 92 | 4/27/2026 |
| 1.2.0-preview | 103 | 3/29/2026 |
| 1.1.0 | 114 | 2/4/2026 |
| 1.0.3-preview | 107 | 1/9/2026 |
| 1.0.2-preview | 108 | 1/8/2026 |
| 1.0.0 | 317 | 11/12/2025 |
| 1.0.0-preview2 | 215 | 11/6/2025 |
| 1.0.0-preview1 | 221 | 11/5/2025 |
| 0.9.9 | 206 | 10/16/2025 |
| 0.9.8 | 228 | 10/14/2025 |
| 0.9.7-preview | 205 | 10/13/2025 |
| 0.9.6-preview | 186 | 10/12/2025 |
Loading failed