Thank you. I got the app running on Vista. All I had to do was manually copy the sqlite3.dll file into the bin directory. that solution was apparently too simple for me.
I still can't get it to work on mono/osx :-(. osx 10.5 is fully UNIX compatible, so this shouldn't be a big deal. If it works on SUSE it should work on OSX. Here is what I've done
download the source for sqlite-3.6.4:
sqlite-amalgamation-3.6.4.tar.gz (the latest right now)
modify sqlite3.c to add the following at the top of the file:
#define SQLITE_ENABLE_COLUMN_METADATA 1
I then ran:
./configure
make
at this point, I have a directory full of files and I'm not sure where to put which.
sorry to be so thickheaded here, but my googling skills are failing me. Thank you for all your work on this library!