Hi I am having problems building SQLite with msvc6 (linux build went fine). So this is probably due to my total lack of experience with MS compilers.
Compiling source code in sqlite_source compiles fine. I built this into a static lib with multithreading, dynamic linking and debug switched on. I then built the example c program on the quick-start page and linked it against my sqlitelib.lib and the standard libs msvcrtd.lib, msvcprtd.lib, kernel32.lib and oldnames.lib This results in 2 link errors: unresolved external symbol __pctype unresolved external symbol ___mb_cur_max These both seem to be referred to in stdtypes.h but are obviously not contained in the standard c library (msvcrtd.lib). Can anyone tell me which libs I should be linking against to pick up these symbols? Thanks, Richard Forrest