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
260 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
4answers
76 views
Avoiding conflicting declaration errors in typedef c++
Is there a way I can make g++ ignore or work around conflicting typedefs?
Background:
I'm writing some c++ code for the gridlab_d simulator. My model needs to connect to a c++ database, so I'm using ...
1
vote
1answer
60 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
0answers
77 views
MySQL++ Warning
c:\program files\microsoft visual studio 9.0\vc\include\result.h(212) : warning C4275: non dll-interface class 'std::_Container_base_aux' used as base for dll-interface class ...
1
vote
1answer
1k views
“'assert’ was not declared in this scope” in MySQL++
I'm compiling a project in XCode where MySQL++ in included and linked to. For some reason, I keep getting the following compiler error:
'assert’ was not declared in this scope
originating from ...
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
136 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
160 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
2answers
114 views
mysql++ query fails
I'm a new user of mysql++ looking for some pointers (pun intended).
The problem: my update statement fails.
The connection is open. The previous statement that uses the connection works.
I'm sure ...
0
votes
1answer
103 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
308 views
How can I re-use a MySQL++ query object to call multiple stored procedures?
#include <iostream>
#include <mysql++.h>
using namespace std;
int main() {
// Get database access parameters from command line
const char* db = "enet", *server = "192.168.1.108", ...
0
votes
1answer
471 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
154 views
C++ and MySql++:: Segmentation error?
Okay, I just directly put my code here:
main.cpp
mysqlpp::Connection conn(false);
int main() {
if (conn.connect(DATABASE, HOST, DBUSER, DBPASS)) {
Users a(conn, "test","pass");
...
0
votes
2answers
250 views
C++ MySQL++ Delete query statement brain killer question
I'm relatively new to the MySQL++ connector in C++, and have an really annoying issue with it already!
I've managed to get stored procedures working, however i'm having issues with the delete ...
0
votes
1answer
88 views
how to pass a value of table to a variable of c++ using select in mysql++ [closed]
How to select a value from a table and store in a variable in my sql++
e.g select name from employee;
write this query in c++ and then store the name in variable e_name
I googled and I know the ...
0
votes
1answer
376 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
2answers
304 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
340 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, ...
0
votes
4answers
643 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 ...
-1
votes
1answer
71 views
c++ mysql++ librarys
I want a mysql connection with C++ to my database. I downloaded the files from http://tangentsoft.net/mysql++/
I wasn't able to successfully install it and get the libraries in the c:/mysql++ folder.
...