Tagged Questions
3
votes
3answers
223 views
MySQL++, storing realtime data
Firstly I'm an engineer, not a computer scientist, so please be gentle.
I currently have a C++ program which uses MySQL++. The program also incorporates the NI Visa runtime. One of the interrupt ...
3
votes
8answers
1k views
About MySQL++, GPL and LGPL
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 against ...
2
votes
1answer
262 views
Problem using mysql++ library
I've read the tutorial at, and I generally get how that works:
http://tangentsoft.net/mysql++/doc/html/userman/tutorial.html#simple
I am trying to build this mysql++ code, and I'm getting an error:
...
1
vote
1answer
55 views
Cannot compile MySQL++
I am trying to compile MySQL++ 3.1.0 with the command:
mingw32-make -f Makefile.mingw
After a set of files gets compiled (e.g. beemutex.cpp, cmdline.cpp, connection.cpp, ...), I get these errors:
...
1
vote
1answer
62 views
MySQL++ SSL Support on Linux
I am attempting to get MySQL++ to work correctly on Debian 6 with SSL support. I have tested everything on Windows 7 and it works great. Everything is encrypted. I am having a little bit of trouble ...
1
vote
1answer
88 views
Codepage related problems with MySQL++
Code:
mysqlpp::Query acc_query = connection->query("SELECT * FROM accounts;");
The following code produces:
_Gfirst = 0x00c67718 "SELECT * FROM accounts;ээээ««««««««юоюою"
As in Visual ...
1
vote
1answer
450 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
1answer
42 views
MySQL++ Application error at launch
I compiled MySQL++ with no issues. When I launched some of the executables (resetdb.exe and simple1.exe) they suggest to run to test if the installation has been successful, the first error I got was ...
0
votes
1answer
139 views
MySQL++ - Run-Time Check Failure #2 - Stack around the variable was corrupted
im having issues with MySQL++ and desperately need help.
I'm using Visual Studio 2010, MySQL++ v3.1.0 and MySQL v5.1.59( x86 & x64 );
All Library's have been compiled correctly. This error only ...
0
votes
2answers
165 views
Why simple mysql++ code compiles standalone, but not in project?
At first, small program:
#include <mysql++.h>
using namespace mysqlpp;
void mainuu ()
{ Connection conn("mysql", "localhost", "root", "pwd");}
If I compile it as one file in CodeLite or in ...
0
votes
1answer
105 views
mysqlpp connect method timeout - how can I control it?
I'm trying to control the connect method timeout, but I didn't find the appropriate mean.
Just to be clear, I'm not talking about the Idle connection timeout(ConnectTimeoutOption).
The scenario I ...
0
votes
1answer
477 views
how to set mysql_ping timeout with MySQL++
I want mysql_ping to timeout in matter of seconds. In the testcase below if a connection is established followed by "ifconfig eth0 down" the false side of conn.ping() is never reached. The ...
0
votes
1answer
381 views
how to pass C++ variables to Insert of c++ using Mysql ++
I am struggling with the code from few days can anyone help
std::string str=uri_req1.substr(found+1);
char query[2000];
sprintf(query,"Insert into publish VALUES('%s','NO')",str);
I am getting ...
0
votes
1answer
276 views
Macports compile of MySQL++ failing
Before running "sudo port install mysqlxx +universal", I installed the universal variant of mysql5.
...
checking whether -lm is needed to use C math functions... no
checking whether -lsocket is ...
0
votes
2answers
307 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
341 views
C++ CGI and MySQL problem (mysql++)
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++ library, ...