1

扣上这个。

奇怪的是,我在网上找不到任何关于这样的错误的信息,但这让我抓狂。希望大家能对这个问题有所了解。

我正在使用 MySQL++ 从表中获取一些基本数据。它可以很好地连接到数据库并且查询似乎可以工作,但是运行 mysql::Query::store() 会导致 malloc 错误。

mysqlpp::Connection conn(false);
if(conn.connect("demo", "127.0.0.1", "root", "")) // works
{
    std::string sql = "SELECT * FROM `items`";
    mysqlpp::Query query = conn.query(sql); // works
    mysqlpp::StoreQueryResult res = query.store(); // fails
    if(res)
    {
        mysqlpp::StoreQueryResult::const_iterator it;
        for(it = res.begin(); it != res.end(); ++it) 
        {
            mysqlpp::Row row = *it;

            // Do some things
        }
    }
    else
    {
        std::cerr<<"Failed to get item list: "<<query.error()<<std::endl;
        return false;
    }
}
else
{
    std::cerr<<"DB connection failed: "<<conn.error()<<std::endl;
    return false;
}

gdb 回溯给了我

(gdb) backtrace
#0  0x00007fff841ed499 in malloc_error_break ()
#1  0x00007fff84117183 in free ()
#2  0x000000010029d66c in mysqlpp::Field::~Field ()
#3  0x0000000100493e4d in mysqlpp::ResultBase::ResultBase (this=0x1004805c8, res=0x100480660, dbd=0x100480660, te=122) at result.cpp:40
#4  0x0000000100494690 in mysqlpp::StoreQueryResult::StoreQueryResult (this=0x100480730, res=0x100303e30, dbd=0x100802600) at result.cpp:103
#5  0x0000000100491242 in mysqlpp::Query::store (this=0x3, str=0x100303da0 "SELECT * FROM `items`", len=4298128944) at query.cpp:534
#6  0x00000001004916dc in mysqlpp::Query::store (this=0x3, s=@0x100480848) at query.cpp:508
#7  0x00000001004917c3 in mysqlpp::Query::store (this=0x3) at query.cpp:483
#8  0x0000000100297464 in Load ()
....

Load() 是正在运行的函数。

如果我进行两次查询(出于好奇,我这样做了),

mysqlpp::Query query = conn.query(sql);
query = conn.query(sql);
mysqlpp::StoreQueryResult res = query.store();

我没有得到 malloc 错误,但确实得到了 SQL 错误:

You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'SELECT * FROM `items`' at line 1

我的 g++ 版本是

g++ (MacPorts gcc47 4.7.3_0) 4.7.3

有任何想法吗?我以前使用过 MySQL++,我从来没有遇到过任何问题。

此外,这个 Load() 序列恰好位于动态链接库中。(我有一个加载/卸载系统。)如果我注释掉 MySQL 部分,编译并加载库,一切都很好。如果我然后取消注释该部分,重新​​编译并重新加载库(主程序仍在运行),查询运行成功!!!wtf

任何帮助都会令人难以置信。谢谢!!

4

1 回答 1

0

同样的问题。我的解决方案,检查是否行:

mysqlpp::StoreQueryResult res = query.store(); // fails
if(res.num_rows()){
...
}
于 2015-09-08T23:53:46.857 回答