Adding “System.Data.SQLite” as a reference

∥☆過路亽.° 提交于 2019-12-21 11:31:13

问题


when i was building my project done in asp.net & c#.net ,it produced the error as

"The type or namespace name 'SQLite' does not exist in the namespace 'System.Data' (are you missing an assembly reference?"

so, when i tried to add it as reference ,i was not able to find "System.Data.SQLite" in my library . how to overcome this problem.?


回答1:


Try to search for System.Data.SQLite.DLL file (using windows explorer search) or if you have not yet installed it just download it from the net.

For more information try to read this.




回答2:


You get it (as a dll), then add a reference to it.

download here

for example install to C:\Program Files\SQLite.NET and browse to:

C:\Program Files\SQLite.NET\bin




回答3:


I found that the best way to do this is to enter the following into the Package Manager Console:

Install-Package System.Data.SqLite



回答4:


For those folks that downloaded SQLite but can't get the DLL to show up in VS2010:

I've downloaded the latest SQLite build for my environment, but I still couldn't get the DLL to show up under References> Add Reference> .Net tab.

To fix this, I went into the Add Reference Window and selected the Browse Tab and just browsed to the DLL file in the install directory\bin folder. Now it shows up fine.




回答5:


You need to download System.Data.SQLite, then you can add it to your project.



来源:https://stackoverflow.com/questions/2399520/adding-system-data-sqlite-as-a-reference

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!