Question

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.?

Was it helpful?

Solution

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.

OTHER TIPS

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

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

Install-Package System.Data.SqLite

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.

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

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top