Microsoft.Data.Sqlite 10.0.0-preview.2.25163.8

Prefix Reserved
This is a prerelease version of Microsoft.Data.Sqlite.
There is a newer prerelease version of this package available.
See the version list below for details.

Requires NuGet 3.6 or higher.

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

Microsoft.Data.Sqlite is a lightweight ADO.NET provider for SQLite. The EF Core provider for SQLite is built on top of this library. However, it can also be used independently or with other data access libraries.

Installation

The latest stable version is available on NuGet.

dotnet add package Microsoft.Data.Sqlite

Use the --version option to specify a preview version to install.

Basic usage

This library implements the common ADO.NET abstractions for connections, commands, data readers, and so on. For more information, see Microsoft.Data.Sqlite on Microsoft Docs.

using var connection = new SqliteConnection("Data Source=Blogs.db");
connection.Open();

using var command = connection.CreateCommand();
command.CommandText = "SELECT Url FROM Blogs";

using var reader = command.ExecuteReader();
while (reader.Read())
{
    var url = reader.GetString(0);
}

Getting support

If you have a specific question about using these projects, we encourage you to ask it on Stack Overflow. If you encounter a bug or would like to request a feature, submit an issue. For more details, see getting support.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  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 was computed.  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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (636)

Showing the top 5 NuGet packages that depend on Microsoft.Data.Sqlite:

Package Downloads
Microsoft.AspNetCore.All

Provides a default set of APIs for building an ASP.NET Core application, and also includes API for third-party integrations with ASP.NET Core. This package requires the ASP.NET Core runtime. This runtime is installed by the .NET Core SDK, or can be acquired separately using installers available at https://aka.ms/dotnet-download.

SqlSugarCore

.Net Core3.1 .Net5 .Net6 .Net7 .Net8 安装此版本,好用的ORM框架 ,支持国外主流和国产人大金仓达梦 OceanBase GaussDB QuestDb ClickHouse Oracle MySql Gbase8s SqlServer Sqlite 等, 使用教程:https://www.donet5.com/Home/Doc?typeId=1226

ThinkGeo.Core

ThinkGeo.Core works with both .NET Core(3.0 and above) and .NET Framework(4.6.2 and above). It provides geometries, data sources, layers, styles, rendering, and low level functions for building GIS applications. It is the basic core dependency package across all of the ThinkGeo 12.0 product line. ** This is an extension for use in ThinkGeo's product line, and cannot be used standalone. See below for more details. ** Docs and Product Guides: https://docs.thinkgeo.com/ API Documentation: https://wiki.thinkgeo.com/wiki/12.0/thinkgeo.core ThinkGeo Cloud APIs: https://cloud.thinkgeo.com This is a commercial product with a free 30-day evaluation. Start your evaluation by signing up at https://helpdesk.thinkgeo.com/register and downloading the ProductCenter application. Supported Platforms: Windows, Linux, macOS - ThinkGeo UI Components based on .NET Core - ThinkGeo UI for Android. ThinkGeo UI for iOS. ThinkGeo UI for Blazor. ThinkGeo UI for WebApi. ThinkGeo UI for WPF.

Umbraco.Cms.Persistence.Sqlite

Adds support for SQLite to Umbraco CMS.

YesSql.Provider.Sqlite

Package Description

GitHub repositories (190)

Showing the top 20 popular GitHub repositories that depend on Microsoft.Data.Sqlite:

Repository Stars
microsoft/PowerToys
Windows system utilities to maximize productivity
jellyfin/jellyfin
The Free Software Media System - Server Backend & API
microsoft/semantic-kernel
Integrate cutting-edge LLM technology quickly and easily into your apps
DapperLib/Dapper
Dapper - a simple object mapper for .Net
abpframework/abp
Open-source web application framework for ASP.NET Core! Offers an opinionated architecture to build enterprise software solutions with best practices on top of the .NET. Provides the fundamental infrastructure, cross-cutting-concern implementations, startup templates, application modules, UI themes, tooling and documentation.
aspnetboilerplate/aspnetboilerplate
ASP.NET Boilerplate - Web Application Framework
nopSolutions/nopCommerce
ASP.NET Core eCommerce software. nopCommerce is a free and open-source shopping cart.
Flow-Launcher/Flow.Launcher
:mag: Quick file search & app launcher for Windows with community-made plugins
ThreeMammals/Ocelot
.NET API Gateway
elsa-workflows/elsa-core
A .NET workflows library
quartznet/quartznet
Quartz Enterprise Scheduler .NET
NLog/NLog
NLog - Advanced and Structured Logging for Various .NET Platforms
microsoft/VFSForGit
Virtual File System for Git: Enable Git at Enterprise Scale
DotNetNext/SqlSugar
.Net aot ORM Fastest ORM DB2 Hana Simple Easy VB.NET Sqlite orm Oracle ORM Mysql Orm 虚谷数据库 postgresql ORm SqlServer oRm 达梦 ORM 人大金仓 ORM 神通ORM C# ORM , C# ORM .NET ORM NET5 ORM .NET6 ORM ClickHouse orm QuestDb ,TDengine ORM,OceanBase orm,GaussDB orm ,Tidb orm Object/Relational Mapping
kurrent-io/EventStore
EventStoreDB, the event-native database. Designed for Event Sourcing, Event-Driven, and Microservices architectures
ServiceStack/ServiceStack
Thoughtfully architected, obscenely fast, thoroughly enjoyable web services for all
TechnitiumSoftware/DnsServer
Technitium DNS Server
akkadotnet/akka.net
Canonical actor model implementation for .NET with local + distributed actors in C# and F#.
umbraco/Umbraco-CMS
Umbraco is a free and open source .NET content management system helping you deliver delightful digital experiences.
Xabaril/AspNetCore.Diagnostics.HealthChecks
Enterprise HealthChecks for ASP.NET Core Diagnostics Package
Version Downloads Last updated
10.0.0-preview.3.25171.6 42 4/10/2025
10.0.0-preview.2.25163.8 2,294 3/18/2025
10.0.0-preview.1.25081.1 1,884 2/25/2025
9.0.4 8,217 4/8/2025
9.0.3 133,797 3/11/2025
9.0.2 189,019 2/11/2025
9.0.1 213,262 1/14/2025
9.0.0 773,401 11/12/2024
9.0.0-rc.2.24474.1 13,495 10/8/2024
9.0.0-rc.1.24451.1 5,052 9/10/2024
9.0.0-preview.7.24405.3 2,218 8/13/2024
9.0.0-preview.6.24327.4 1,772 7/9/2024
9.0.0-preview.5.24306.3 2,483 6/11/2024
9.0.0-preview.4.24267.1 1,353 5/21/2024
9.0.0-preview.3.24172.4 7,312 4/11/2024
9.0.0-preview.2.24128.4 3,504 3/12/2024
9.0.0-preview.1.24081.2 3,211 2/13/2024
8.0.15 1,015 4/8/2025
8.0.14 32,707 3/11/2025
8.0.13 58,011 2/11/2025
8.0.12 63,626 1/14/2025
8.0.11 400,041 11/12/2024
8.0.10 949,813 10/8/2024
8.0.8 1,047,415 8/13/2024
8.0.7 659,644 7/9/2024
8.0.6 546,426 5/28/2024
8.0.5 205,409 5/14/2024
8.0.4 593,121 4/9/2024
8.0.3 393,780 3/12/2024
8.0.2 503,766 2/13/2024
8.0.1 1,366,716 1/9/2024
8.0.0 2,040,684 11/14/2023
8.0.0-rc.2.23480.1 15,287 10/10/2023
8.0.0-rc.1.23419.6 6,135 9/12/2023
8.0.0-preview.7.23375.4 15,506 8/8/2023
8.0.0-preview.6.23329.4 2,040 7/11/2023
8.0.0-preview.5.23280.1 4,584 6/13/2023
8.0.0-preview.4.23259.3 2,017 5/16/2023
8.0.0-preview.3.23174.2 4,160 4/11/2023
8.0.0-preview.2.23128.3 3,555 3/14/2023
8.0.0-preview.1.23111.4 1,828 2/21/2023
7.0.20 119,104 5/28/2024
7.0.19 13,694 5/14/2024
7.0.18 17,487 4/9/2024
7.0.17 25,991 3/12/2024
7.0.16 16,299 2/13/2024
7.0.15 31,924 1/9/2024
7.0.14 123,023 11/14/2023
7.0.13 274,365 10/24/2023
7.0.12 109,953 10/10/2023
7.0.11 306,844 9/12/2023
7.0.10 330,033 8/8/2023
7.0.9 305,647 7/11/2023
7.0.8 199,300 6/22/2023
7.0.7 350,767 6/13/2023
7.0.5 1,603,079 4/11/2023
7.0.4 356,622 3/14/2023
7.0.3 335,743 2/14/2023
7.0.2 460,748 1/10/2023
7.0.1 398,546 12/13/2022
7.0.0 1,410,399 11/7/2022
7.0.0-rc.2.22472.11 11,449 10/11/2022
7.0.0-rc.1.22426.7 5,582 9/14/2022
7.0.0-preview.7.22376.2 6,333 8/9/2022
7.0.0-preview.6.22329.4 15,761 7/12/2022
7.0.0-preview.5.22302.2 1,751 6/14/2022
7.0.0-preview.4.22229.2 6,012 5/10/2022
7.0.0-preview.3.22175.1 4,898 4/13/2022
7.0.0-preview.2.22153.1 6,280 3/14/2022
7.0.0-preview.1.22076.6 4,658 2/17/2022
6.0.36 25,189 11/12/2024
6.0.35 27,374 10/8/2024
6.0.33 511,127 8/13/2024
6.0.32 31,213 7/9/2024
6.0.31 31,185 5/28/2024
6.0.30 13,184 5/14/2024
6.0.29 3,298 4/9/2024
6.0.28 29,920 3/12/2024
6.0.27 16,837 2/13/2024
6.0.26 66,667 1/9/2024
6.0.25 71,172 11/14/2023
6.0.24 183,064 10/24/2023
6.0.23 14,851 10/10/2023
6.0.22 21,331 9/12/2023
6.0.21 36,617 8/8/2023
6.0.20 42,470 7/11/2023
6.0.19 17,402 6/22/2023
6.0.18 6,083 6/13/2023
6.0.16 119,990 4/11/2023
6.0.15 62,096 3/14/2023
6.0.14 57,384 2/14/2023
6.0.13 87,440 1/10/2023
6.0.12 96,732 12/13/2022
6.0.11 166,061 11/7/2022
6.0.10 366,632 10/11/2022
6.0.9 447,550 9/13/2022
6.0.8 547,839 8/9/2022
6.0.7 387,091 7/12/2022
6.0.6 221,221 6/14/2022
6.0.5 1,327,984 5/10/2022
6.0.4 678,971 4/11/2022
6.0.3 604,922 3/8/2022
6.0.2 506,235 2/8/2022
6.0.1 893,778 12/14/2021
6.0.0 2,062,888 11/8/2021
6.0.0-rc.2.21480.5 16,742 10/12/2021
6.0.0-rc.1.21452.10 4,547 9/14/2021
6.0.0-preview.7.21378.4 5,447 8/10/2021
6.0.0-preview.6.21352.1 4,195 7/14/2021
6.0.0-preview.5.21301.9 1,971 6/15/2021
6.0.0-preview.4.21253.1 2,702 5/24/2021
6.0.0-preview.3.21201.2 4,417 4/8/2021
6.0.0-preview.2.21154.2 7,617 3/11/2021 6.0.0-preview.2.21154.2 is deprecated because it is no longer maintained.
6.0.0-preview.1.21102.2 4,791 2/12/2021 6.0.0-preview.1.21102.2 is deprecated because it is no longer maintained.
5.0.17 572,879 5/10/2022 5.0.17 is deprecated because it is no longer maintained.
5.0.16 72,655 4/11/2022 5.0.16 is deprecated because it is no longer maintained.
5.0.15 42,826 3/8/2022 5.0.15 is deprecated because it is no longer maintained.
5.0.14 23,692 2/8/2022 5.0.14 is deprecated because it is no longer maintained.
5.0.13 95,206 12/14/2021 5.0.13 is deprecated because it is no longer maintained.
5.0.12 157,111 11/7/2021 5.0.12 is deprecated because it is no longer maintained.
5.0.11 247,040 10/12/2021 5.0.11 is deprecated because it is no longer maintained.
5.0.10 202,941 9/14/2021 5.0.10 is deprecated because it is no longer maintained.
5.0.9 297,947 8/10/2021 5.0.9 is deprecated because it is no longer maintained.
5.0.8 266,567 7/13/2021 5.0.8 is deprecated because it is no longer maintained.
5.0.7 510,884 6/8/2021 5.0.7 is deprecated because it is no longer maintained.
5.0.6 276,795 5/11/2021 5.0.6 is deprecated because it is no longer maintained.
5.0.5 2,209,796 4/6/2021 5.0.5 is deprecated because it is no longer maintained.
5.0.4 1,315,433 3/9/2021 5.0.4 is deprecated because it is no longer maintained.
5.0.3 638,604 2/9/2021 5.0.3 is deprecated because it is no longer maintained.
5.0.2 1,168,391 1/12/2021 5.0.2 is deprecated because it is no longer maintained.
5.0.1 287,522 12/8/2020 5.0.1 is deprecated because it is no longer maintained.
5.0.0 277,257 11/9/2020 5.0.0 is deprecated because it is no longer maintained.
5.0.0-rc.2.20475.6 30,032 10/13/2020 5.0.0-rc.2.20475.6 is deprecated because it is no longer maintained.
5.0.0-rc.1.20451.13 15,911 9/14/2020 5.0.0-rc.1.20451.13 is deprecated because it is no longer maintained.
5.0.0-preview.8.20407.4 1,117 8/25/2020 5.0.0-preview.8.20407.4 is deprecated because it is no longer maintained.
5.0.0-preview.7.20365.15 11,806 7/21/2020 5.0.0-preview.7.20365.15 is deprecated because it is no longer maintained.
5.0.0-preview.6.20312.4 3,449 6/25/2020 5.0.0-preview.6.20312.4 is deprecated because it is no longer maintained.
5.0.0-preview.5.20278.2 10,954 6/10/2020 5.0.0-preview.5.20278.2 is deprecated because it is no longer maintained.
5.0.0-preview.4.20220.10 1,367 5/18/2020 5.0.0-preview.4.20220.10 is deprecated because it is no longer maintained.
5.0.0-preview.3.20181.2 2,158 4/23/2020 5.0.0-preview.3.20181.2 is deprecated because it is no longer maintained.
5.0.0-preview.2.20159.4 3,983 4/2/2020 5.0.0-preview.2.20159.4 is deprecated because it is no longer maintained.
5.0.0-preview.2.20120.8 1,257 3/16/2020 5.0.0-preview.2.20120.8 is deprecated because it is no longer maintained.
3.1.32 270,424 12/13/2022
3.1.31 29,809 11/8/2022
3.1.30 34,848 10/11/2022
3.1.29 7,579 9/13/2022
3.1.28 28,266 8/9/2022
3.1.27 26,770 7/12/2022
3.1.26 9,915 6/14/2022
3.1.25 23,760 5/10/2022
3.1.24 12,844 4/11/2022
3.1.23 20,620 3/8/2022
3.1.22 51,481 12/14/2021
3.1.21 155,783 11/7/2021
3.1.20 13,175 10/11/2021
3.1.19 20,756 9/14/2021
3.1.18 10,863 8/10/2021
3.1.17 50,491 7/13/2021
3.1.16 24,133 6/8/2021
3.1.15 78,781 5/11/2021
3.1.14 32,030 4/6/2021
3.1.13 26,461 3/9/2021
3.1.12 59,517 2/9/2021
3.1.11 30,408 1/12/2021
3.1.10 202,199 11/9/2020
3.1.9 343,722 10/13/2020
3.1.8 464,685 9/8/2020
3.1.7 272,904 8/11/2020
3.1.6 231,109 7/14/2020
3.1.5 741,828 6/9/2020
3.1.4 350,806 5/12/2020
3.1.3 655,048 3/24/2020
3.1.2 327,131 2/19/2020
3.1.1 365,831 1/14/2020
3.1.0 412,269 12/3/2019
3.1.0-preview3.19554.8 1,456 11/13/2019 3.1.0-preview3.19554.8 is deprecated because it is no longer maintained.
3.1.0-preview2.19525.5 1,350 11/1/2019 3.1.0-preview2.19525.5 is deprecated because it is no longer maintained.
3.1.0-preview1.19506.2 1,741 10/15/2019 3.1.0-preview1.19506.2 is deprecated because it is no longer maintained.
3.0.3 42,095 2/19/2020
3.0.2 2,216 1/14/2020
3.0.1 155,943 11/18/2019
3.0.0 490,095 9/23/2019
3.0.0-rc1.19456.14 88,335 9/16/2019 3.0.0-rc1.19456.14 is deprecated because it is no longer maintained.
3.0.0-preview9.19423.6 2,366 9/4/2019 3.0.0-preview9.19423.6 is deprecated because it is no longer maintained.
3.0.0-preview8.19405.11 2,667 8/13/2019 3.0.0-preview8.19405.11 is deprecated because it is no longer maintained.
3.0.0-preview7.19362.6 1,226 7/23/2019 3.0.0-preview7.19362.6 is deprecated because it is no longer maintained.
3.0.0-preview6.19304.10 17,975 6/12/2019 3.0.0-preview6.19304.10 is deprecated because it is no longer maintained.
3.0.0-preview5.19227.1 5,573 5/6/2019 3.0.0-preview5.19227.1 is deprecated because it is no longer maintained.
3.0.0-preview4.19216.3 1,400 4/18/2019 3.0.0-preview4.19216.3 is deprecated because it is no longer maintained.
3.0.0-preview3.19153.1 1,341 3/6/2019 3.0.0-preview3.19153.1 is deprecated because it is no longer maintained.
3.0.0-preview.19074.3 2,985 1/29/2019 3.0.0-preview.19074.3 is deprecated because it is no longer maintained.
3.0.0-preview.18572.1 1,646 12/3/2018 3.0.0-preview.18572.1 is deprecated because it is no longer maintained.
2.3.0 13,290 1/14/2025
2.2.6 3,161,542 7/9/2019 2.2.6 is deprecated because it is no longer maintained.
2.2.4 3,386,408 4/9/2019 2.2.4 is deprecated because it is no longer maintained.
2.2.3 661,526 3/11/2019 2.2.3 is deprecated because it is no longer maintained.
2.2.2 523,291 2/12/2019 2.2.2 is deprecated because it is no longer maintained.
2.2.1 1,009,347 1/8/2019 2.2.1 is deprecated because it is no longer maintained.
2.2.0 909,269 12/3/2018 2.2.0 is deprecated because it is no longer maintained.
2.2.0-preview3-35497 4,235 10/17/2018 2.2.0-preview3-35497 is deprecated because it is no longer maintained.
2.2.0-preview2-35157 4,152 9/12/2018 2.2.0-preview2-35157 is deprecated because it is no longer maintained.
2.2.0-preview1-35029 3,719 8/22/2018 2.2.0-preview1-35029 is deprecated because it is no longer maintained.
2.1.14 532,036 11/18/2019
2.1.11 382,141 5/14/2019
2.1.8 341,325 2/12/2019
2.1.0 4,057,584 5/29/2018
2.1.0-rc1-final 11,773 5/6/2018 2.1.0-rc1-final is deprecated because it is no longer maintained.
2.1.0-preview2-final 10,883 4/10/2018 2.1.0-preview2-final is deprecated because it is no longer maintained.
2.1.0-preview1-final 19,160 2/26/2018 2.1.0-preview1-final is deprecated because it is no longer maintained.
2.0.1 6,679,073 3/13/2018 2.0.1 is deprecated because it is no longer maintained.
2.0.0 10,655,734 8/11/2017 2.0.0 is deprecated because it is no longer maintained.
2.0.0-preview2-final 54,328 6/28/2017 2.0.0-preview2-final is deprecated because it is no longer maintained.
2.0.0-preview1-final 23,793 5/10/2017 2.0.0-preview1-final is deprecated because it is no longer maintained.
1.1.1 543,399 5/9/2017 1.1.1 is deprecated because it is no longer maintained.
1.1.0 816,438 11/16/2016 1.1.0 is deprecated because it is no longer maintained.
1.1.0-preview1-final 6,822 10/24/2016 1.1.0-preview1-final is deprecated because it is no longer maintained.
1.0.1 316,323 12/12/2016 1.0.1 is deprecated because it is no longer maintained.
1.0.0 521,219 6/27/2016 1.0.0 is deprecated because it is no longer maintained.
1.0.0-rc2-final 16,343 5/16/2016 1.0.0-rc2-final is deprecated because it is no longer maintained.
1.0.0-rc1-final 74,361 11/18/2015 1.0.0-rc1-final is deprecated because it is no longer maintained.
1.0.0-beta8 19,468 10/15/2015 1.0.0-beta8 is deprecated because it is no longer maintained.
1.0.0-beta7 7,363 9/2/2015 1.0.0-beta7 is deprecated because it is no longer maintained.
1.0.0-beta6 5,530 7/27/2015 1.0.0-beta6 is deprecated because it is no longer maintained.
1.0.0-beta1 4,208 11/11/2014 1.0.0-beta1 is deprecated because it is no longer maintained.