1

I have a fresh Windows7 and VS2010 and I cannot fully figure out which are the needed files to install in order to use and develop apps using VS2010 and SQLite

Your help will be greatly appreciated.

Morten

MortenB
  • 11
  • 1
  • 2

1 Answers1

1

You can use nuget extension for VS2010 for installing any libraries into your project.

Install-Package System.Data.SQLite

It will install all necessary assemblies.

cylon-v
  • 101
  • 1
  • 3
  • Cool extension! System.Data.SQLite is also available directly here: http://sqlite.phxsoftware.com/ – MPelletier Dec 15 '11 at 02:01
  • 1
    Thanks - Installed Install-Package System.Data.SQLite and it works, but what i am missing is how to get SQLite into the selection of Data Sources. Any ideas please? – MortenB Dec 15 '11 at 12:00
  • 1
    As i could not get the Visual Studio integration to work with System.Data.SQLite I resolved my case for the time being by using the Devart dotConnect for SQLite http://www.devart.com/dotconnect/sqlite/ – MortenB Dec 16 '11 at 16:44
  • Check this out 1. http://stackoverflow.com/questions/6127404/system-data-sqlite-not-being-recognized-by-visual-studio-2010-on-win-2k8-server 2. http://www.tsjensen.com/blog/post/2011/06/04/SQLite+On+Visual+Studio+2010+Setup+Instructions.aspx – Baljeetsingh Sucharia Aug 06 '12 at 07:13