通过NuGet获取sqlite对应的.net的dll

https://www.nuget.org/packages/System.Data.SQLite/

直接在Package Manager Console中执行命令,会自动安装依赖项的

Install-Package System.Data.SQLite

安装完成之后,一共安装4个dll

Attempting to gather dependency information for package ‘System.Data.SQLite.1.0.103‘ with respect to project ‘ClientApp‘, targeting ‘.NETFramework,Version=v4.5.2‘
Attempting to resolve dependencies for package ‘System.Data.SQLite.1.0.103‘ with DependencyBehavior ‘Lowest‘
Resolving actions to install package ‘System.Data.SQLite.1.0.103‘
Resolved actions to install package ‘System.Data.SQLite.1.0.103‘
Adding package ‘EntityFramework.6.0.0‘ to folder ‘F:\CodeForGitBlit\YunClient\packages‘
Added package ‘EntityFramework.6.0.0‘ to folder ‘F:\CodeForGitBlit\YunClient\packages‘
Added package ‘EntityFramework.6.0.0‘ to ‘packages.config‘
Executing script file ‘F:\CodeForGitBlit\YunClient\packages\EntityFramework.6.0.0\tools\install.ps1‘

Type ‘get-help EntityFramework‘ to see all available Entity Framework commands.
Successfully installed ‘EntityFramework 6.0.0‘ to ClientApp
Adding package ‘System.Data.SQLite.Core.1.0.103‘ to folder ‘F:\CodeForGitBlit\YunClient\packages‘
Added package ‘System.Data.SQLite.Core.1.0.103‘ to folder ‘F:\CodeForGitBlit\YunClient\packages‘
Added package ‘System.Data.SQLite.Core.1.0.103‘ to ‘packages.config‘
Successfully installed ‘System.Data.SQLite.Core 1.0.103‘ to ClientApp
Adding package ‘System.Data.SQLite.EF6.1.0.103‘ to folder ‘F:\CodeForGitBlit\YunClient\packages‘
Added package ‘System.Data.SQLite.EF6.1.0.103‘ to folder ‘F:\CodeForGitBlit\YunClient\packages‘
Added package ‘System.Data.SQLite.EF6.1.0.103‘ to ‘packages.config‘
Executing script file ‘F:\CodeForGitBlit\YunClient\packages\System.Data.SQLite.EF6.1.0.103\tools\net451\install.ps1‘
Successfully installed ‘System.Data.SQLite.EF6 1.0.103‘ to ClientApp
Adding package ‘System.Data.SQLite.Linq.1.0.103‘ to folder ‘F:\CodeForGitBlit\YunClient\packages‘
Added package ‘System.Data.SQLite.Linq.1.0.103‘ to folder ‘F:\CodeForGitBlit\YunClient\packages‘
Added package ‘System.Data.SQLite.Linq.1.0.103‘ to ‘packages.config‘
Successfully installed ‘System.Data.SQLite.Linq 1.0.103‘ to ClientApp
Adding package ‘System.Data.SQLite.1.0.103‘, which only has dependencies, to project ‘ClientApp‘.
Adding package ‘System.Data.SQLite.1.0.103‘ to folder ‘F:\CodeForGitBlit\YunClient\packages‘
Added package ‘System.Data.SQLite.1.0.103‘ to folder ‘F:\CodeForGitBlit\YunClient\packages‘
Added package ‘System.Data.SQLite.1.0.103‘ to ‘packages.config‘
Successfully installed ‘System.Data.SQLite 1.0.103‘ to ClientApp

4个红色的都是依赖项

时间: 2024-10-14 04:51:52

通过NuGet获取sqlite对应的.net的dll的相关文章

让EF飞一会儿:如何用Entity Framework 6 连接Sqlite数据库

小分享:我有几张阿里云优惠券,用券购买或者升级阿里云相应产品最多可以优惠五折!领券地址:https://promotion.aliyun.com/ntms/act/ambassador/sharetouser.html?userCode=ohmepe03 获取Sqlite 1.可以用NuGet程序包来获取,它也会自动下载EF6 2.在Sqlite官网上下载对应的版本:http://system.data.sqlite.org/index.html/doc/trunk/www/downloads.

NuGet程序包安装SQLite后完全抽离出SQLite之入门介绍及注意事项,你真的懂了吗?

前言 近几天的几篇文章讲的内容非前面内容如系列的讲解,这几天文章都是我在项目中遇到的问题以及重新学习的知识,所以和大家分享一下,关于SQLite的文章多如牛毛,但是有些大多已经过时,为什么说过时,之前都是在SQLite官网中下载dll或者exe来实现,现如今我们可以直接安装SQLite程序包,又方便了我们,同时作者对于SQLite也没用过,这也是项目需要才去学习SQLite的使用,欢迎和大家一起探讨. 安装SQLite 通过NUGet来安装SQlite程序包,如下: 此时自然而然在包中会有如下S

C# 中 SQLite 使用介绍

关于SQLite SQLite是一款轻型的嵌入式的遵守ACID的关系型数据库管理系统,诞生已有15个年头了.随着移动互联的发展,现在得到了更广泛的使用. 在使用SQLite之前,我们势必要先了解它一些“个性”的地方.下面是它的一些特点: 1.  自包含.SQLite很大层度上是独立的,他只需要非常小的外部库支持.任何程序能够访问磁盘就可以使用SQLite数据库.这使它适用于嵌入式设备,缺乏桌面计算机支持的基础设施.这也使得SQLite适用于不作任何修改就可运行在不同配置电脑上的程序. 2.  无

Nlog 记录日志到 sqlite

最近研究了一下Nlog这个日志框架,这里记录一下如何将日志写到sqlite中. 第一步:使用NuGet获取Nlog和Sqlite 第二步:在sqlite中创建一个database,这里我用了SQLite Expert Personal可视化工具 第三步:在Nlog.config中配置target节点,这个在Nlog的官网中没有查找到相应的例子,但网上有一篇博客有相应的记载,所以就先参考下: <target name="Database" xsi:type="Databa

整理两个PetaPoco连接SQLite数据库的方法

从https://github.com/qingask/PetaPoco.NetCore下载源文件压缩包 解压出文件PetaPoco.Multiple.cs.PetaPoco.NetCore.cs 放置System.Data.SQLite.dll文件到bin文件,这个需要从SQLite官方获取对应框架集级对应位文件,应该可以直接通过NuGet获取. 方法1: 增加DbProviderFactories类,向PetaPoco注入SQLite实例 public static class DbProv

SQLite 数据库

SQLite 数据库是Android 中内嵌的轻量级关系型数据库,本质上只是一个文件.SQLite 内部只支持NULL,INTEGER, REAL,TEXT 和BLOB 这五种数据类型,在SQLite 中可以把各种类型的数据保存到任何字段中而不用关心字段声明的数据类型是什么,例如可以把字符串类型的值存入INTEGER类型的字段中.因此在编写建表语句时可以省略数据列后面的类型声明.但有一种情况例外,定义为INTEGER PRIMARY KEY 的字段只能存储64位整数,当向这种字段保存整数以外的数

Sqlite学习笔记(二)&amp;&amp;性能测试

测试目标 获取SQlite的常规性能指标 测试环境 CPU:8核,Intel(R) Xeon(R) CPU E5-2430 0 @ 2.20GHz 内存:16G 磁盘:SSD Linux 2.6.32 SQlite最新版本3.8.11 测试场景 1)  主键查询测试 2)  主键更新测试 3)  批量导入测试 初始化 1)  测试表结构 CREATE TABLE user( id integer primary key autoincrement, c1 int, c2 varchar(1000

使用 NuGet 管理我们的程序集 - 预发行版

1.缘起 在我们的项目中,需要引用的组件统一放在一个 Libs 目录下.无论对于平台上的公共组件,还是应用模块,都是如此. 如果一个应用模块,例如能源管理(EM),要引用平台提供的公共组件,例如数据库访问(Platform.PL),那么不但要把Platform.PL程序集拷贝到EM的Libs目录下,也要把Platform.PL所引用的程序集,也就是Platform.PL的Libs目录下的文件,拷贝到EM的Libs目录下. 随着平台上应用模块的增多,Platform.PL被引用得也越来越多.我们是

Visual Studio 2015 NuGet Update-Package 失败/报错:Update-Package : Unable to load the service index for source https://api.nuget.org/v3/index.json.

起因 为了用VS2015 community中的NuGet获取Quartz,在[工具]-[NuGet包管理器]-[程序包管理器控制台]中执行 Install-Package Quartz. 却报如下错误: Update-Package : Unable to load the service index for source https://api.nuget.org/v3/index.json. 复制该网址到浏览器中,确实无法打开. 解决方法 经网上搜集资料,得知替换source即可.将原Nu