Maple.Sqlite
1.0.26
dotnet add package Maple.Sqlite --version 1.0.26
NuGet\Install-Package Maple.Sqlite -Version 1.0.26
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="Maple.Sqlite" Version="1.0.26" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Maple.Sqlite" Version="1.0.26" />
<PackageReference Include="Maple.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 Maple.Sqlite --version 1.0.26
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Maple.Sqlite, 1.0.26"
#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 Maple.Sqlite@1.0.26
#: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=Maple.Sqlite&version=1.0.26
#tool nuget:?package=Maple.Sqlite&version=1.0.26
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Maple.Sqlite
C# wrapper for Sqlite3
example:
using Maple.Sqlite;
using var db = new SqliteDb("sample.db");
db.Execute(@"
CREATE TABLE Test(
testId INTEGER NOT NULL PRIMARY KEY,
name TEXT NOT NULL);
");
using (var insert = db.PrepareFluent("INSERT INTO Test VALUES(@0, @1)"))
{
insert.Bind(0, 1);
insert.Bind(1, "Hello");
insert.NonQuery();
}
using var rdr = db.PrepareFluent("SELECT name from TEST where testId=@testId")
.BindNext(1)
.Reader();
while (rdr.Read())
{
var name = rdr.GetString(0);
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0-windows7.0 is compatible. net9.0-windows 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.
-
net8.0-windows7.0
- Maple.IO (>= 1.0.26)
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.0.26 | 360 | 6/12/2025 |
1.0.23 | 141 | 11/12/2024 |
1.0.21 | 148 | 6/1/2024 |
1.0.20 | 133 | 5/31/2024 |
1.0.19 | 123 | 5/30/2024 |
1.0.18 | 135 | 5/28/2024 |
1.0.17 | 125 | 5/16/2024 |
1.0.16 | 140 | 5/15/2024 |
1.0.15 | 128 | 5/15/2024 |
1.0.14 | 134 | 5/15/2024 |
1.0.13 | 146 | 5/9/2024 |
1.0.12 | 118 | 5/9/2024 |
1.0.11 | 155 | 3/4/2024 |
1.0.10 | 135 | 2/27/2024 |
1.0.9 | 148 | 2/2/2024 |
1.0.8 | 118 | 2/2/2024 |
1.0.7 | 128 | 2/1/2024 |
1.0.6 | 133 | 1/31/2024 |
1.0.5 | 116 | 1/29/2024 |
1.0.3 | 187 | 12/12/2023 |
1.0.2 | 137 | 12/12/2023 |