SQLite.NET wrapper
A couple of classes in C# to allow access to SQLite databases from C#. Does not follow the ADO.NET style of data access, instead going for a simpler method consisting of a client class, and a result set class.
Installation
Extract the zip to a directory, your projects exiting directory would be a good idea. Keep the .xml file with the dll if you want IntelliSense documentation. In Visual Studio, right click References and click Add Reference. Browse to the SQLiteClient dll and hit OK. If you're not using Visual Studio, then you'll need to specify /reference:SQLiteClient.dll when you compile your program (same goes for if you're using Mono).