Tagged Questions

2
votes
8answers
214 views

About MySQL++, GPL and LGPL

Hi all. MySQL++ is licensed though LGPL, that means that I could release an executable dynamically linked against it without worrying about the source code not being GPL. But, MySQL++ DOES link …
0
votes
2answers
25 views

Mysql++ “undefined reference to __imp___ZN7mysqlpp10ConnectionC1Eb”

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?
0
votes
2answers
43 views

Compiler warnings with MySQL++ with release configuration.

For some reason I get some warnings about "non dll-interface class" when building with a release configuration, but not debug. I've compared the release and debug configurations, and my ones with the …
0
votes
2answers
118 views

C++ CGI and MySQL problem (mysql++)

Hi I'm trying to use c++ in cgi programs and everything is ok if i don't use mysql. Without mysql my site is generated in about 1-2 ms, but if I add only one variable or function from mysql++ …
0
votes
0answers
134 views

howto Communicate with MYSQL Embedded Server from MySQL++ DLL?

I have write my code using MySQL++ to communicate with the MySQL Embedded Server. at first, I used dynamic link method (use mysqlpp.dll), but it always fail with 1 when do mysql_real_connect(). later …
0
votes
5answers
261 views

C++ Mysql++, always fails connection!

Steps: - Installed Mysql Server 2005 - Downloaded Mysql++, built both debug and release version. - Ran install.hta and selected a directory - Added library/include directory in MSVC++ 2008 - Included …
0
votes
5answers
192 views

MySQL++ library doesn’t work after upgrading GCC

I was using mysql++ library and compiling with GCC 3.3.4. That GCC version had some bugs so I upgraded to GCC 3.4.6. After upgrading GCC I rebuilt mysql++ and recompiled my program. But now I get a …