i am traying to start using Berkeley DB, i downloaded the latest version of DB available here: Berkeley DB 5.1.25.msi Windows installer, with AES encryption
after the installation i started Visual studio 2010 and i did the followng:
Project -> "project name" Properties -> VC++ Diretories -> include Directories
i added the path
C:\Program Files\Oracle\Berkeley DB 11gR2 5.1.25\include
and i wrote the following code:
#include<db_cxx.h>
#include<iostream>
using namespace std;
int main(){
Db db(NULL, 0); // Instantiate the Db object
return 0;
}
but it shows the following errors:
Error 1 error LNK2019: unresolved external symbol "public: virtual __thiscall Db::~Db(void)" (??1Db@@UAE@XZ) referenced in function _main C:\Users\Ahmed\documents\visual studio 2010\Projects\ssss\ssss\test.obj
Error 2 error LNK2019: unresolved external symbol "public: __thiscall Db::Db(class DbEnv *,unsigned int)" (??0Db@@QAE@PAVDbEnv@@I@Z) referenced in function _main C:\Users\Ahmed\documents\visual studio 2010\Projects\ssss\ssss\test.obj
Error 3 error LNK1120: 2 unresolved externals C:\Users\Ahmed\documents\visual studio 2010\Projects\ssss\Debug\ssss.exe 1
i tried to follow the documentation, i read this piece of inf but i do not know how i can apply it in Visual Studio 2010:
When building your application during development, you should normally use compile options "Debug Multithreaded DLL" and link against build_windows\Debug\libdb51d.lib. You can also build using a release version of the Berkeley DB libraries and tools, which will be placed in build_windows\Win32\Release\libdb51.lib. When linking against the release build, you should compile your code with the "Release Multithreaded DLL" compile option. You will also need to add the build_windows directory to the list of include directories of your application's project, or copy the Berkeley DB include files to another location.