ADO.NET Style (native)C++ wrapper for SQLite
http://sourceforge.net/projects/sharplite

Introduction
SharpLite is set of wrapper classes for SQLite. If you are 
familiar with the ADO.NET development you will love SharpLite.


Compilation
---------------------------------------------
You can find ide specific project files in the /build directory.
In order to compile yourself just open your favorite ide and add
all of the files in the /src directory then hit 'compile button'


when using the library you might need to link your program against
sqlite3 library, the /depends directory contains precompiled 
versions of the file for windows(both mingw and msvc8). If that
doesn't work, you can generate it yourself from "sqlite3.def" 
file with the 'lib tool' or something similar.

(I'm not sure! If the followings doesn't work, you are on your own)

-mingw
  shell>dlltool -d sqlite3.def -libsqlite3.a

-msvc 
  shell>lib /machine:i386 /def:sqlite3.def


Verison History
---------------------------------------------
v0.1c (January 25 2006)
This is the inital release of SharpLite, It has been developed 
using Visual C++ Express 2005. Not well tested and has no 
documentation except the source code.

