Could not load file or assembly'System.Data.SQLite.dll' or one of its depedencies

前端之家收集整理的这篇文章主要介绍了Could not load file or assembly'System.Data.SQLite.dll' or one of its depedencies前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
【问题】


在我本机的开发环境c#连接sqlite3没有问题,可是release版本移植到其他的机器就提示Couldnotloadfileorassembly'System.Data.sqlite.dll'oroneofitsdepedencies。找不到指定模块。


解决

搜来搜去没找到靠谱的答案,其实最后还是自己解决的。

sqlite官方的下载页面里面说了:TheVisualC++2010SP1runtimeforx86andthe.NETFramework4.0arerequired.

也就是说,除了要安装.NetFramework4.0之外,还要安装TheVisualC++2010SP1runtime,这是微软的一个单独补丁包,下载地址:http://www.microsoft.com/downloads/zh-cn/details.aspx?familyid=c32f406a-f8fc-4164-b6eb-5328b8578f03

装好该补丁包之后,就一切OK了。 (前提:exe目录下存在'System.Data.sqlite.dll'这个dll文件


(VisualC++2010SP1runtime:http://www.microsoft.com/en-us/download/details.aspx?id=8328


可以使用sqlite Database Browser来查看数据,下载: http://sourceforge.net/projects/sqlitebrowser/

原文链接:https://www.f2er.com/sqlite/200376.html

猜你在找的Sqlite相关文章