Tagged Questions
MySQL++ is a C++ wrapper for MySQL’s C API.
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
125 views
Qt/MySQL++/vector iteration question
I've got a question regarding my vector iteration method within a Qt/MySQL++ project I'm working on at the moment.
I've been using for loops to iterate through them so far, and being quite a beginner ...
0
votes
1answer
159 views
UseQueryResult is not a member of mysqlpp
That's the error I get when I run this code :
if(mysqlpp::UseQueryResult res = conn.query(sql).use())
Whats more interesting is that the next line doesn't have any problems
while(mysqlpp::Row row ...
0
votes
1answer
164 views
Converting mysqlpp::String to C++ int
Ok, I'm relatively new to using the mysqlpp library that is used in Visual Studio to connect to a MySQL database and am having trouble trying to convert a vector of type mysqlpp::String to a vector of ...
0
votes
1answer
190 views
Is it safe to convert a mysqlpp::sql_blob to a std::string?
I'm grabbing some binary data out of my MySQL database. It comes out as a mysqlpp::sql_blob type.
It just so happens that this BLOB is a serialized Google Protobuf. I need to de-serialize it so ...