I am trying to install the mysql++ in Code::Blocks, but When I try to run the example code I get this error:

undefined reference to __imp___ZN7mysqlpp10ConnectionC1Eb

What I am doing wrong?

link|improve this question

I didn't understand what does it means. – M28 Nov 25 '09 at 11:10
What operating system are you using (I'm guessing Win32)? Are you using mysql++ source or compiled code or an installer package? – PP. Nov 25 '09 at 13:12
I use win32, I have a directory lib and inside it there is the .dll of the mysql++. I think that I am not importing the .dll correctly... – M28 Nov 25 '09 at 13:49
feedback

2 Answers

up vote 1 down vote accepted

You must build MySQL++ with the exact same compiler and compiler options as you're using to build your program. What you're seeing is a name mangling and/or ABI mismatch due to mixing compilers and/or build options. This can be anything from a drastic error like trying to use a Visual C++ DLL with MinGW, to something more subtle like trying to use a MinGW DLL built with g++ 3.4.5 in a program you're building with MinGW g++ 4.4.

Unlike C, C++ doesn't try to preserve binary compatibility between greatly different compilers.

link|improve this answer
I'll try to compile it by myself – M28 Nov 25 '09 at 16:37
Sorry, I don't know how to compile by myself :( – M28 Nov 25 '09 at 16:51
Read README-MinGW.txt. – Warren Young Nov 25 '09 at 17:39
feedback

You probably have a linker issue. It could well be that a DLL you need isn't present, or mysql++ was compiled but not correctly linked.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.