我目前正在开发一个使用数据库连接的小型 C++ 程序。它是通过 CPPCONN 连接器与 MySQL 数据库的连接。
原因
我正在使用多个线程,因此我创建了以下方法:
void Database::startThread()
{
fDriver->threadInit();
}
void Database::stopThread()
{
fDriver->threadEnd();
}
void Database::connect(const string & host, const string & user, const string & password, const string & database)
{
fDriver = sql::mysql::get_driver_instance();
fConnection.reset(fDriver->connect((SQLString)host,(SQLString)user,(SQLString)password));
fConnection->setSchema((SQLString) database);
fStatement.reset(fConnection->createStatement());
fConnection->setClientOption("multi-queries","true");
fConnection->setClientOption("multi-statements","true");
}
问题是我在 fDriver->threadInit() 调用中遇到了分段错误。我可以向你保证,fDriver 在那个时候通过 connect 函数被正确地实例化了。(fDriver 也不为空)
迷恋;撞车;崩溃
不幸的是,我不能提供更多有用的信息,但这是 GDB 的回溯:
Program received signal SIGSEGV, Segmentation fault.
[Switching to Thread 0x7ffff4d66700 (LWP 16786)]
0x0000000000414547 in Database::startThread (this=Unhandled dwarf expression opcode 0xf3
#0 0x0000000000414547 in Database::startThread (this=Unhandled dwarf expression opcode 0xf3) at src/core/database.cpp:73
#1 0x0000000000405443 in Parser::Parser (this=0x7ffff4d659b8) at src/core/sv_parse.cpp:11
#2 0x000000000041e76d in MessageProcessor::MessageProcessor (this=0x7ffff4d659b0, serverStartTime=...) at src/server/messageProcessor.cpp:12
#3 0x000000000041bae8 in Server::__lambda1::operator() (__closure=0x62c740) at src/server/server.cpp:89
#4 0x00007ffff763f550 in execute_native_thread_routine () at ../../../../../libstdc++-v3/src/c++11/thread.cc:84
#5 0x00007ffff6edb851 in start_thread () from /lib64/libpthread.so.0
#6 0x00007ffff6c2994d in clone () from /lib64/libc.so.6
评论
现在奇怪的部分:这种崩溃不会一直发生!有时它工作得很好。但是,如果没有,那当然是非常烦人的。CPPCONN 版本是 1.1.3,我们使用的是 g++ 版本 4.8.1。
我希望有人能解开这个谜团!
吉列尔