Tagged Questions
MySQL++ is a C++ wrapper for MySQL’s C API. It is built around the same principles as the Standard C++ Library, to make dealing with the database as easy as dealing with STL containers. In addition, MySQL++ provides facilities that let you avoid the most repetitive sorts of SQL within your own code, providing native C++ interfaces for these common tasks.
3
votes
1answer
208 views
mysql++ problem with linking
I have problem, I use mysql++ 3.1.0:
after building mysql++.sln in debug and release mode for vc2008, and using instal.hta then
adding dirrectoires in vc++ directories to lib and include folders,
and ...
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:
...
2
votes
1answer
120 views
Linux application - minimize the dependencies
I am trying to minimize the dependencies caused by the shared library mysql++. I know it sounds strange; but I am struggling to solve a platform limitation on Slamd64 ( with 32bit compatibility ...
1
vote
1answer
49 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
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
2answers
103 views
MySQL++ and AUTO_INCREMENT
Use to work with a MySQL + + (library for C + +)
The database has some fields for which you AUTO_INCREMENT.
How to know what value will these fields when inserting a new row to the table?
1
vote
1answer
89 views
Convert from MySQL++ to PostgreSQL at run time
I am a recent graduate and have recently joined my job. I have been asked to create a Data Access Layer between the C++ application and the database it is interacting with. The program currently uses ...
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
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
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
1answer
56 views
mysqlpp query not returning from execution
I have a fairly simple call I'm trying to make to a database. I have everything surrounded in try/catch and if statements, but... nothing. I know I'm making the connection (the connection refcount ...
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
102 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
3answers
155 views
mysql and c — use variable in query
I'm writing a c program with an mysql database connection
and I'm having difficulties creating my mysql queries...
i want to you a variable integer in my mysql query, but i can't seem to get 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
1answer
275 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
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 ...
0
votes
4answers
301 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 ...
-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.
...