Not sure why the Win32 DLL is not compatible. I would think it should be. You might want to work that out first. Can you elaborate?
As for compiling with the WDK, it can be done. The amalgamated source is best. The flood of warnings is a pain. SQLite dev claims they are all spurious, but with so many I wouldn't venture to guess how they can tell. For W32, you should be able to disable "treat warnings as errors" for just the sqlite3.c file if your development organization allows this. If you are building 64 bits, then you have more work to do. The last time I ported in new SQLite source, it still cast 32 bit integers into 64 bit pointers. The WDK compiler isn't going to allow this without some source modifications. I did write a ticket so this might be fixed. As of the last time I checked, it was not. Bjorn Rauch wrote: > Hello, > > Has anybody tried to compile SQLite3 with the MS WDK? The Win32 DLL is not > compatible as far as I understand and recompiling with the WDK is necessary. > But using the source code as is results in many warnings (mostly conversion > errors). The WDK does not tollerate these. > > Best regards, > Björn > _________________________________________________________________ > News, entertainment and everything you care about at Live.com. Get it now! > http://www.live.com/getstarted.aspx > _______________________________________________ > sqlite-users mailing list > [email protected] > http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users > > _______________________________________________ sqlite-users mailing list [email protected] http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

