Fumble 2.0.1

dotnet add package Fumble --version 2.0.1
                    
NuGet\Install-Package Fumble -Version 2.0.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="Fumble" Version="2.0.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Fumble" Version="2.0.1" />
                    
Directory.Packages.props
<PackageReference Include="Fumble" />
                    
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 Fumble --version 2.0.1
                    
#r "nuget: Fumble, 2.0.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 Fumble@2.0.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=Fumble&version=2.0.1
                    
Install as a Cake Addin
#tool nuget:?package=Fumble&version=2.0.1
                    
Install as a Cake Tool

Thin F# API for Sqlite for easy data access to sqlite database with functional seasoning on top.

Product Compatible and additional computed target framework versions.
.NET 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 was computed.  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

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
2.0.1 179 12/5/2025
1.2.0 303 4/18/2025
1.1.0 278 12/11/2024
1.0.3 860 3/18/2024
1.0.2 612 1/12/2024
1.0.1 713 5/29/2023
1.0.0 256 5/28/2023
0.9.0 552 11/9/2022
0.8.3 566 10/17/2022
0.8.2 833 6/7/2022
0.8.1 14,166 4/7/2022
0.8.0 1,081 2/18/2022
0.7.9 650 12/11/2021
0.7.6 657 2/16/2021
0.7.5 565 1/13/2021
0.7.4 623 12/4/2020
0.7.2 593 12/1/2020
0.7.1 609 11/13/2020
0.6.6 618 11/5/2020
0.6.5 659 11/4/2020
0.6.4 629 10/29/2020
0.6.2 652 10/16/2020
0.4.0 703 7/26/2020
0.3.0 668 7/26/2020
0.2.0 715 7/10/2020
0.1.0 638 6/9/2020

BREAKING**: Changed CREATE TABLE type mappings to use proper SQLite types (TEXT INTEGER REAL BLOB)
Add TimeSpan support (stored as ticks in INTEGER)
Add DateOnly support (stored as TEXT yyyy-MM-dd)
Add TimeOnly support (stored as ticks in INTEGER)
Add byte uint32 uint64 parameter and reader support
Add executeScalar and executeScalarAsync for single value queries
Add executeCount helper for COUNT queries
Add executeExists helper for existence checks
Add pagination helpers: skip take paginate
Add SQLite-specific helpers: connectInMemory connectInMemoryShared
Add SQLite pragma helpers: pragma pragmaSet enableForeignKeys enableWalMode etc.
Add database introspection: listTables listIndexes tableInfo sqliteVersion
Add maintenance functions: vacuum analyze
Add bulk operations: bulkUpdate bulkDelete upsert