I've got this MFC application i'm working on that needs to have an embedded database. so, i went on hunting for a slick,fast "embeddable" db 4 it and stumbled accross SQLite.
now, i've created a DB with it, and i created a static library project with VS2k8.the library project will be used in another main project .
in the library project, i created a class 'DBClass' with a method : AddFeedToDB(CFeed f). the library project uses
the .lib file from codeproject (cppsqlite3.lib).
when compiling the static library, no error is detected but when i try to use the library project file in the main
project, i get these type of errors :
"error LNK2019: unresolved external symbol
"public:void __thiscall CppSQLite3DB::close(void)"
(?close@CppSQLite3DB@@QAEXXZ
referenced in function "public: int __thiscall
CTalkingFeedsDB::AddFeedToDB(class CFeed,char const*)"(?
AddFeedToDB@CTalkingFeedsDB@@QAEHVCFeed@@PDB@Z"
what am i missing ?