This isn't specific to Sqlite; but the situation with msvcr80.dll is worth noting. See my blog post:
http://www.itwriting.com/blog/?postid=261 In a nutshell: if you use the latest Microsoft compiler and choose dynamic linking to the C runtime library, you have a potentially complex deployment. Easiest solution is to use static linking (/MT rather than /MD); but dynamic linking is the default. Or use a different compiler. I'm not sure that I've nailed every last nuance of this problem, so comments welcome. Tim

