Small. Fast. Reliable.
Choose any three.
*** 115,117 ****
--- 115,131 ----
  This is needed, because files need to be explicitely opened in binary mode and the check for locking always fails in DJGPP.
  
  DJGPP: http://www.delorie.com/djgpp
+ 
+ ===
+ 
+ MSVC and SQLite DLL
+ 
+ Creation of an import library from the sqlitedll.zip
+ (http://www.sqlite.org/sqlitedll.zip) for MS Visual C++
+ is achieved by the following command:
+ 
+ 	LIB /DEF:sqlite.def
+ 
+ This makes the files sqlite.lib and sqlite.def.
+ The sqlite.lib can then be used to link your programs
+ against the SQLite DLL.