Mailing List
Home
Forum Home
MySQL General - General MySQL discussion
MySQL++ - Programming with the C++ API to MySQL
MaxDB - Everything about MaxDB, formerly known as SAP DB
ODBC - ODBC with the MySQL Connector/ODBC driver
MySQL on Win32 - Runing MySQL on Windows 9x/Me/NT/2000/XP
Java Help - Mostly related to the MySQL Connector/J driver
Perl - Perl support for MySQL with DBI and DBD::mysql
GUI - MySQL GUI Tools
Announcement
Subjects
mysql openssl Question
ERROR 1045: Access denied for user: 'root@localhost ' (Using
password: NO)
Update one field with more fields from another table
Getting Identity after INSERT
ERROR 2002: Can 't connect to local MySQL server through socket
mysql test 4 1 fails with the gis test
MySQL Cluster Software
Downgrade Mysql from 4 to 3 23
Mysql 4 0 Oracle Stored Procedure Trigger Conversion
Can 't access mysql after kernel upgrade
Executing MySQL Commands From Within C Program
Comparing and writing out BLOBS
Preventing Duplicate Entries
FULLTEXT query format question
Strange behavior, Table Level Permission
Does the binary log enabling affect the MySQL performances?
mysql:it 's a db not a dbms how it 's possible?!
mysql have same function mthod as Oracle decode()
 
Cannot use query timeout feature

Cannot use query timeout feature

2007-06-25       - By Cezar Manole

 Back
Reply:     1     2  

We want to produce a mysqlpp build containing the query timeout fix.
That's why we downloaded the latest sources from mysqlpp repository and
copied the files connection.h, connection.cpp (they are supposed to
contain that fix) over mysql++-2.2.3. Then we rebuilt mysql++-2.2.3 and
used the new library libmysqlpp.so.2.2.3. The problem is that after
calling set_option() and connect() we caught a mysqlpp::Exception that
contains the message: "option 11 requires an argument of type 2". Our
sequence of code is:



                       mysqlpp::Connection* connection = 0;

                       try

                       {

                                   connection = new
mysqlpp::Connection(use_exceptions);

                                   


connection->set_option(mysqlpp::Connection::opt_read_timeout ,(unsigned
int)10);

                                   


connection->connect(m_database.c_str(),m_server.c_str(),m_user.c_str(),m
_password.c_str(),m_port);

                                   

                       }

                       catch(const mysqlpp::Exception& ex)

                       {

                                   cout << ex.what());

                       }



So how can we beneficiate of the mysqlpp query timeout fix ?



Thanks,

Cezar

******************************************************************************
This email and any files transmitted with it may be confidential and are
intended solely for the use of the
individual or entity to whom they are addressed.  If you have received this
email in error then please delete
it and notify the sender.  Do not make a copy or forward it to anyone.

This footnote also confirms that this email message has been swept for the
presence of computer viruses.

Adaptive Mobile Security Ltd, Dublin Technology Centre, Taylors Lane, Dublin 8,
Ireland
Directors: B Collins, L Burke (UK), G. Maclachlan (UK). J. Ennis (UK)
Registered in Ireland, Company No. 370343, VAT Reg.No.IE63903430

*****************************************************************************