You only need System.Data.SQLite.dll . You can reference this assembly in your SharedLibs folder, and that should be enough. sqlite3.dll is unmanaged code that contains the databae mechanism itself, and it is embedded in a resource inside the managed System.Data.SQLite assembly. Also, because of this unmanaged code, there are actually two versions of the System.Data.SQLite assembly: one for x86 and one for x64, so make sure you link to the correct one for your system.
You can download this assembly here: http://sqlite.phxsoftware.com/
source share