I face a problem when i create a DLL project through visual studio express 2012. I'm already link to a boost library folder and also include a header file which is into my source code.
But when I build the project with write a code such as below:-
boost::any result = dataBase.get("SELECT * FROM FOOD_LIST");
It will get an error and build unsuccessful.
Example error that I get:-
error LNK1120:1 unresolved externals
Can someone help me or give me an idea to solve the problem? Thank you.