Help with Error Message
-
Hello guys im trying to create an application that uses the hand after i insert the header and cpp files in the application the following error messsage comes up when i try to build the application. Error 3 error LNK2019: unresolved external symbol _sqlite_freemem referenced in function "public: __thiscall CppSQLiteException::CppSQLiteException(int,char *,bool)" (??0CppSQLiteException@@QAE@HPAD_N@Z) CppSQLite.obj PasswordManager Why is this happening guys? can anyone help me. And btw I am new a C++ just to let you know.
-
Hello guys im trying to create an application that uses the hand after i insert the header and cpp files in the application the following error messsage comes up when i try to build the application. Error 3 error LNK2019: unresolved external symbol _sqlite_freemem referenced in function "public: __thiscall CppSQLiteException::CppSQLiteException(int,char *,bool)" (??0CppSQLiteException@@QAE@HPAD_N@Z) CppSQLite.obj PasswordManager Why is this happening guys? can anyone help me. And btw I am new a C++ just to let you know.
Sorry guys had a typo there, here is the actual post: Hello guys im trying to create an application that uses CppSQLiteWrapper and after i insert the header and cpp files in the application the following error messsage comes up when i try to build the application. Error 3 error LNK2019: unresolved external symbol _sqlite_freemem referenced in function "public: __thiscall CppSQLiteException::CppSQLiteException(int,char *,bool)" (??0CppSQLiteException@@QAE@HPAD_N@Z) CppSQLite.obj PasswordManager Why is this happening guys? can anyone help me. And btw I am new a C++ just to let you know.
-
Sorry guys had a typo there, here is the actual post: Hello guys im trying to create an application that uses CppSQLiteWrapper and after i insert the header and cpp files in the application the following error messsage comes up when i try to build the application. Error 3 error LNK2019: unresolved external symbol _sqlite_freemem referenced in function "public: __thiscall CppSQLiteException::CppSQLiteException(int,char *,bool)" (??0CppSQLiteException@@QAE@HPAD_N@Z) CppSQLite.obj PasswordManager Why is this happening guys? can anyone help me. And btw I am new a C++ just to let you know.
cdpace wrote:
unresolved external symbol _sqlite_freemem
This indicates that either you have spelt this function name wrongly, or the libary that includes the function has not been added to your project. Check that you have added all the pre-requisites for
CppSQLiteWrapper
. I don't know where you got this code from but it may be quicker if you go back to the source and ask your question there.