Microsoft.Data.Sqlite 9.0.0-rc.1.24451.1

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.

Showing the top 20 packages that depend on Microsoft.Data.Sqlite.

Packages Downloads
Captcha
BotDetect CAPTCHA Generator protects ASP.NET/Core forms from spam postings. The Captcha protection is available on .NET/Core for jQuery, Angular & React frontends and ASP.NET MVC1-6, WebForms & WebPages backends. It works in China; doesn't stalk; nor does it slurp your form-data -- think: GDPR & LGPD! BotDetect uses many different image and sound algorithms for the generation of Captcha codes. While each Captcha algorithm is easily comprehensible to human users, generating Captcha codes by random algorithm makes the Captcha challenge extremely difficult to pass automatically. BotDetect provides an audio Captcha alternative to keep ASP.NET web applications accessible to the blind and other people for whom reading the Captcha code could be a problem, enabling you to make WCAG and Section 508 compliant websites. BotDetect is a self-hosted .NET Captcha Component -- no 3rd-party servers are involved in the generation, displaying, and validation of Captcha challenges. Therefore, BotDetect neither identify nor stalk your users and visitors -- nor does it slurp logins, passwords, and other data they fill in your forms. This allows for the GDPR & LGPD compliant sites -- and also does miracles for the forms on any of the national security-sensitive ones. FEATURES: -------------------- * Out-of-the-box integrations with Angular, AngularJS, jQuery, and React frontend frameworks * Produces XHTML 1.1 Strict, Section 508 and WCAG AAA compliant markup * Fully compatible with ASP.NET Core 1.x and 2.x * Fully compatible with legacy .NET 2.0 and onwards, .NET Core 1.x and .NET Core 2.x * Fully compatible with ASP.NET MVC 1-5 and ASP.NET Core MVC (MVC 6) * Fully compatible with ASP.NET WebForms * Fully compatible with ASP.NET Web Pages * Fully compatible with ASP.NET Ajax and jQuery Ajax validation * Fully compatible with SharePoint Server / Foundation * Visual Studio .NET 2017, 2015, 2013, 2012, 2010, 2008, 2005 and 2003 Designer support * Medium trust environment support for shared servers * Tested in Chrome, Firefox, Safari, IE, Edge and Opera browsers * Full support for all Android & iOS devices * Localized Captcha generation, using various Unicode character sets and downloadable multi-language sound pronunciations * Custom Captcha image size, format, color scheme... * Custom Captcha code length, style, character set, timeouts, generated code filtering... * Many other randomization & customization options * 60 secure & readable Captcha image styles * 20 secure & accessible audio Captcha sound styles * It works in China * It does not identify and stalk your users and visitors * It does not slurp your form data * It allows for the GDPR and LGPD compliant sites * Licensable source code What nuget to use? -------------------- Please note that from the version 4.2 onward we have two BotDetect CAPTCHA nugets on the nuget.org. * Use THIS nuget for ASP.NET applications running on the legacy .NET (non-Core) Frameworks * Use THIS nuget for ASP.NET Core applications running on the .NET Core Frameworks However, there is one special case that required the separate nuget. * Use our NEW helper nuget INSTEAD OF this one for the special case of ASP.NET Core applications running on the legacy .NET (non-Core) Frameworks. The new helper nuget name is CAPTCHA.asp.net.core.on.legacy.net.frameworks and it is available at https://www.nuget.org/packages/CAPTCHA.asp.net.core.on.legacy.net.frameworks/
24
Captcha
BotDetect CAPTCHA Generator protects ASP.NET/Core forms from spam. The Captcha protection is available on .NET/Core for jQuery, Angular & React frontends and ASP.NET MVCCore, MVC1-5, WebForms & WebPages backends. It works in China; doesn't stalk; nor does it slurp your form-data -- think: GDPR & LGPD! BotDetect uses many different image and sound algorithms for the generation of Captcha codes. While each Captcha algorithm is easily comprehensible to human users, generating Captcha codes by random algorithm makes the Captcha challenge extremely difficult to pass automatically. BotDetect provides an audio Captcha alternative to keep ASP.NET web applications accessible to the blind and other people for whom reading the Captcha code could be a problem, enabling you to make WCAG and Section 508 compliant websites. BotDetect is a self-hosted .NET Captcha Component -- no 3rd-party servers are involved in the generation, displaying, and validation of Captcha challenges. Therefore, BotDetect neither identify nor stalk your users and visitors -- nor does it slurp logins, passwords, and other data they fill in your forms. This allows for the GDPR, LGPD, and CCPA compliant sites -- and also does miracles for the forms on any of the national security-sensitive ones. FEATURES: -------------------- * Out-of-the-box integrations with Angular, AngularJS, jQuery, and React frontend frameworks * Produces XHTML 1.1 Strict, Section 508 and WCAG AAA compliant markup * Fully compatible with ASP.NET Core 1.x and 2.x * Fully compatible with legacy .NET 2.0 and onwards, .NET Core 1.x and .NET Core 2.x * Fully compatible with ASP.NET MVC 1-5 and ASP.NET Core MVC (MVC 6) * Fully compatible with ASP.NET WebForms * Fully compatible with ASP.NET Web Pages * Fully compatible with ASP.NET Ajax and jQuery Ajax validation * Fully compatible with SharePoint Server / Foundation * Visual Studio .NET 2017, 2015, 2013, 2012, 2010, 2008, 2005 and 2003 Designer support * Medium trust environment support for shared servers * Tested in Chrome, Firefox, Safari, IE, Edge and Opera browsers * Full support for all Android & iOS devices * Localized Captcha generation, using various Unicode character sets and downloadable multi-language sound pronunciations * Custom Captcha image size, format, color scheme... * Custom Captcha code length, style, character set, timeouts, generated code filtering... * Many other randomization & customization options * 60 secure & readable Captcha image styles * 20 secure & accessible audio Captcha sound styles * It works in China * It does not identify and stalk your users and visitors * It does not slurp your form data * It allows for the GDPR, LGPD, and CCPA compliant sites * Licensable source code What nuget to use? -------------------- Please note that from the version 4.2 onward we have two BotDetect CAPTCHA nugets on the nuget.org. * Use THIS nuget for ASP.NET applications running on the legacy .NET (non-Core) Frameworks * Use THIS nuget for ASP.NET Core applications running on the .NET Core Frameworks However, there is one special case that required the separate nuget. * Use our NEW helper nuget INSTEAD OF this one for the special case of ASP.NET Core applications running on the legacy .NET (non-Core) Frameworks. The new helper nuget name is CAPTCHA.asp.net.core.on.legacy.net.frameworks and it is available at https://www.nuget.org/packages/CAPTCHA.asp.net.core.on.legacy.net.frameworks/
27
Microsoft.AspNetCore.All
Microsoft.AspNetCore.All
23
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.
22
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.
23
Microsoft.EntityFrameworkCore.Sqlite
SQLite data store for Entity Framework.
29
Microsoft.EntityFrameworkCore.Sqlite
SQLite database provider for Entity Framework Core.
23
Microsoft.EntityFrameworkCore.Sqlite
SQLite database provider for Entity Framework Core.
34
PommaLabs.KVLite.SQLite
KVLite is a partition-based key-value cache built for SQL RDBMSs. This package contains default SQLite driver.
22
PommaLabs.KVLite.SQLite
KVLite is a partition-based key-value cache built for SQL RDBMSs. This package contains default SQLite driver.
24
PommaLabs.KVLite.SQLite
KVLite is a partition-based key-value cache built for SQL RDBMSs. This package contains default SQLite driver.
25
PommaLabs.KVLite.SQLite
KVLite is a partition-based key-value cache built for SQL RDBMSs. This package contains default SQLite driver.
26
PommaLabs.KVLite.SQLite
KVLite is a partition-based key-value cache built for SQL RDBMSs. This package contains default SQLite driver.
31
PommaLabs.KVLite.SQLite
KVLite is a partition-based key-value cache built for SQL RDBMSs. This package contains default SQLite driver.
36
PommaLabs.KVLite.SQLite
KVLite is a partition-based key-value cache built for SQL RDBMSs. This package contains default SQLite driver.
39
PommaLabs.KVLite.SQLite
KVLite is a partition-based key-value cache built for SQL RDBMSs. This package contains default SQLite driver.
45
PommaLabs.KVLite.SQLite
KVLite is a partition-based key-value cache built for SQL. This package contains default SQLite driver.
38

.NET Standard 2.0

Version Downloads Last updated
10.0.0-preview.6.25358.103 2 07/18/2025
10.0.0-preview.5.25277.114 4 06/08/2025
10.0.0-preview.4.25258.110 10 05/14/2025
10.0.0-preview.3.25171.6 9 04/16/2025
10.0.0-preview.2.25163.8 10 03/21/2025
10.0.0-preview.1.25081.1 12 03/05/2025
9.0.7 2 07/16/2025
9.0.6 4 06/14/2025
9.0.5 5 05/15/2025
9.0.4 11 04/16/2025
9.0.3 14 03/14/2025
9.0.2 12 02/24/2025
9.0.1 13 01/19/2025
9.0.0 13 11/14/2024
9.0.0-rc.2.24474.1 14 10/20/2024
9.0.0-rc.1.24451.1 14 09/25/2024
9.0.0-preview.7.24405.3 14 08/13/2024
9.0.0-preview.6.24327.4 15 07/14/2024
9.0.0-preview.5.24306.3 17 06/14/2024
9.0.0-preview.4.24267.1 21 05/25/2024
9.0.0-preview.3.24172.4 16 04/18/2024
9.0.0-preview.2.24128.4 20 03/15/2024
9.0.0-preview.1.24081.2 16 03/09/2024
8.0.18 2 07/14/2025
8.0.17 4 06/14/2025
8.0.16 7 05/15/2025
8.0.15 7 04/14/2025
8.0.14 10 03/14/2025
8.0.13 17 02/23/2025
8.0.12 16 01/18/2025
8.0.11 14 11/14/2024
8.0.10 14 10/20/2024
8.0.8 17 08/13/2024
8.0.7 18 07/12/2024
8.0.6 19 05/28/2024
8.0.5 15 05/15/2024
8.0.4 19 04/18/2024
8.0.3 19 03/15/2024
8.0.2 14 03/09/2024
8.0.1 15 02/06/2024
8.0.0 17 03/09/2024
8.0.0-rc.2.23480.1 18 02/06/2024
8.0.0-rc.1.23419.6 20 02/06/2024
8.0.0-preview.7.23375.4 20 02/06/2024
8.0.0-preview.6.23329.4 19 02/06/2024
8.0.0-preview.5.23280.1 22 02/06/2024
8.0.0-preview.4.23259.3 18 02/06/2024
8.0.0-preview.3.23174.2 19 02/06/2024
8.0.0-preview.2.23128.3 18 02/06/2024
8.0.0-preview.1.23111.4 24 02/06/2024
7.0.20 15 05/28/2024
7.0.19 17 05/15/2024
7.0.18 17 04/18/2024
7.0.17 19 03/15/2024
7.0.16 18 03/09/2024
7.0.15 25 02/06/2024
7.0.14 20 02/06/2024
7.0.13 31 02/06/2024
7.0.12 19 02/06/2024
7.0.11 21 02/06/2024
7.0.10 17 02/06/2024
7.0.9 19 02/06/2024
7.0.8 21 02/06/2024
7.0.7 20 02/06/2024
7.0.5 20 02/06/2024
7.0.4 22 02/06/2024
7.0.3 17 02/06/2024
7.0.2 24 02/06/2024
7.0.1 20 02/06/2024
7.0.0 19 02/06/2024
7.0.0-rc.2.22472.11 17 02/06/2024
7.0.0-rc.1.22426.7 22 02/06/2024
7.0.0-preview.7.22376.2 23 02/06/2024
7.0.0-preview.6.22329.4 19 02/06/2024
7.0.0-preview.5.22302.2 19 02/06/2024
7.0.0-preview.4.22229.2 18 02/06/2024
7.0.0-preview.3.22175.1 21 02/06/2024
7.0.0-preview.2.22153.1 18 02/06/2024
7.0.0-preview.1.22076.6 21 02/06/2024
6.0.36 15 11/14/2024
6.0.35 17 10/08/2024
6.0.33 17 08/13/2024
6.0.32 14 07/13/2024
6.0.31 14 05/28/2024
6.0.30 14 05/15/2024
6.0.29 18 04/18/2024
6.0.28 19 03/15/2024
6.0.27 17 03/09/2024
6.0.26 21 02/06/2024
6.0.25 27 02/06/2024
6.0.24 22 02/06/2024
6.0.23 28 02/06/2024
6.0.22 20 02/06/2024
6.0.21 16 02/06/2024
6.0.20 19 02/06/2024
6.0.19 17 02/06/2024
6.0.18 16 02/06/2024
6.0.16 20 02/06/2024
6.0.15 18 02/06/2024
6.0.14 19 02/06/2024
6.0.13 23 02/06/2024
6.0.12 30 02/06/2024
6.0.11 19 02/06/2024
6.0.10 25 02/06/2024
6.0.9 20 02/06/2024
6.0.8 23 02/06/2024
6.0.7 21 02/06/2024
6.0.6 36 02/06/2024
6.0.5 19 02/06/2024
6.0.4 18 02/06/2024
6.0.3 17 02/06/2024
6.0.2 21 02/06/2024
6.0.1 17 02/06/2024
6.0.0 20 02/06/2024
6.0.0-rc.2.21480.5 19 02/06/2024
6.0.0-rc.1.21452.10 18 02/06/2024
6.0.0-preview.7.21378.4 15 02/06/2024
6.0.0-preview.6.21352.1 20 02/06/2024
6.0.0-preview.5.21301.9 16 02/06/2024
6.0.0-preview.4.21253.1 19 02/06/2024
6.0.0-preview.3.21201.2 19 02/06/2024
6.0.0-preview.2.21154.2 23 02/06/2024
6.0.0-preview.1.21102.2 20 02/06/2024
5.0.17 18 02/06/2024
5.0.16 20 02/06/2024
5.0.15 20 02/06/2024
5.0.14 18 02/06/2024
5.0.13 20 02/06/2024
5.0.12 23 02/06/2024
5.0.11 20 02/06/2024
5.0.10 19 02/06/2024
5.0.9 18 02/06/2024
5.0.8 22 02/06/2024
5.0.7 20 02/06/2024
5.0.6 29 02/06/2024
5.0.5 25 02/06/2024
5.0.4 16 02/06/2024
5.0.3 17 02/06/2024
5.0.2 23 02/06/2024
5.0.1 19 02/06/2024
5.0.0 23 02/06/2024
5.0.0-rc.2.20475.6 20 02/06/2024
5.0.0-rc.1.20451.13 20 02/06/2024
5.0.0-preview.8.20407.4 17 02/06/2024
5.0.0-preview.7.20365.15 19 02/06/2024
5.0.0-preview.6.20312.4 16 02/06/2024
5.0.0-preview.5.20278.2 19 02/06/2024
5.0.0-preview.4.20220.10 18 02/06/2024
5.0.0-preview.3.20181.2 30 02/06/2024
5.0.0-preview.2.20159.4 14 02/06/2024
5.0.0-preview.2.20120.8 22 02/06/2024
3.1.32 17 02/06/2024
3.1.31 23 02/06/2024
3.1.30 18 02/06/2024
3.1.29 35 02/06/2024
3.1.28 17 02/06/2024
3.1.27 19 02/06/2024
3.1.26 17 02/06/2024
3.1.25 19 02/06/2024
3.1.24 24 02/06/2024
3.1.23 23 02/06/2024
3.1.22 16 02/06/2024
3.1.21 15 02/06/2024
3.1.20 31 02/06/2024
3.1.19 21 02/06/2024
3.1.18 20 02/06/2024
3.1.17 21 02/06/2024
3.1.16 16 02/06/2024
3.1.15 20 02/06/2024
3.1.14 20 02/06/2024
3.1.13 18 02/06/2024
3.1.12 17 02/06/2024
3.1.11 16 02/06/2024
3.1.10 18 02/06/2024
3.1.9 19 02/06/2024
3.1.8 19 02/06/2024
3.1.7 19 02/06/2024
3.1.6 18 02/06/2024
3.1.5 31 06/18/2020
3.1.4 19 02/06/2024
3.1.3 23 02/06/2024
3.1.2 18 02/06/2024
3.1.1 16 02/06/2024
3.1.0 18 02/06/2024
3.1.0-preview3.19554.8 33 02/06/2024
3.1.0-preview2.19525.5 23 02/06/2024
3.1.0-preview1.19506.2 20 02/06/2024
3.0.3 18 02/06/2024
3.0.2 19 02/06/2024
3.0.1 19 02/06/2024
3.0.0 19 02/06/2024
3.0.0-rc1.19456.14 19 02/06/2024
3.0.0-preview9.19423.6 20 02/06/2024
3.0.0-preview8.19405.11 19 02/06/2024
3.0.0-preview7.19362.6 17 02/06/2024
3.0.0-preview6.19304.10 18 02/06/2024
3.0.0-preview5.19227.1 22 02/06/2024
3.0.0-preview4.19216.3 19 02/06/2024
3.0.0-preview3.19153.1 17 02/06/2024
3.0.0-preview.19074.3 20 02/06/2024
3.0.0-preview.18572.1 18 02/06/2024
2.3.0 12 01/18/2025
2.2.6 18 02/06/2024
2.2.4 19 02/06/2024
2.2.3 18 02/06/2024
2.2.2 19 02/06/2024
2.2.1 18 02/06/2024
2.2.0 19 02/06/2024
2.2.0-preview3-35497 19 02/06/2024
2.2.0-preview2-35157 20 02/06/2024
2.2.0-preview1-35029 23 02/06/2024
2.1.14 19 02/06/2024
2.1.11 18 02/06/2024
2.1.8 19 02/06/2024
2.1.0 17 02/06/2024
2.1.0-rc1-final 23 02/06/2024
2.1.0-preview2-final 30 02/06/2024
2.1.0-preview1-final 24 02/06/2024
2.0.1 22 02/06/2024
2.0.0 17 02/06/2024
2.0.0-preview2-final 22 02/06/2024
2.0.0-preview1-final 21 02/06/2024
1.1.1 23 02/06/2024
1.1.0 19 02/06/2024
1.1.0-preview1-final 20 02/06/2024
1.0.1 26 02/06/2024
1.0.0 16 02/06/2024
1.0.0-rc2-final 24 02/06/2024
1.0.0-rc1-final 19 02/06/2024
1.0.0-beta8 24 02/06/2024
1.0.0-beta7 17 02/06/2024
1.0.0-beta6 24 02/06/2024
1.0.0-beta1 27 02/06/2024