mysql reconnect,如何设置autoreconnect选项与mysql连接器c ++

Greetings, how can i set autoReconnect option with mysql connector c++ ?

( not with mysql c api http://dev.mysql.com/doc/refman/5.0/en/mysql-options.html )

解决方案

I am not a user of this library, so my knowledge of it is only that last 10 mins worth, so please do verify.

As a general rule, the best resource of such information about usage of various specific details of a library is to take a look at its unit tests. The best thing about OSS.

So if you look at MySQL Connector/C++ unit tests that can be found on their source tree, you will see the below extract.

sql::ConnectOptionsMap connection_properties;

...

connection_properties["OPT_RECONNECT"]=true;

try

{

con.reset(driver->connect(connection_properties));

}

catch (sql::SQLException &e)

{

std::cerr << e.what();

}

For more information, please do the below, so that you can take a look yourselves.

~/tmp$ bzr branch lp:~mysql/mysql-connector-cpp/trunk mysql-connector-cpp

~/tmp$ vi mysql-connector-cpp/test/unit/classes/connection.cpp +170

~/tmp$ vi mysql-connector-cpp/test/unit/classes/connection.h

Having said all that, reconnect option in mysql has to be used very carefully, as you will have to reset any session variables, etc. You will have to treat a reconnected connection as a brand new connection. This has to be verified with the documentation of the particular version of MySQL you are working with.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值