gpt4 book ai didi

c++ - MongoDB C++ 驱动程序不抛出连接错误

转载 作者:可可西里 更新时间:2023-11-01 10:35:07 25 4
gpt4 key购买 nike

这是我的代码-

DBClientBase *conn = NULL;
string err_msg;
ConnectionString cs = ConnectionString::parse(connString, err_msg);

if (!cs.isValid()) {
throw "bad: " + err_msg;
}

try {
conn = cs.connect(err_msg);
}
catch (DBException &e) {
cout << "caught " << err_msg << endl;
return 1;
}

if (!conn) {
cout << "Unable to connect to DB" << endl;
return 1;
}

如果 DB 不可访问,我希望 MongoDB 抛出异常。但是,我发现 if (!conn) 越来越令人满意。

为什么

catch (DBException &e) {
cout << "caught " << err_msg << endl;
return 1;
}

阻止不起作用?

最佳答案

来自 the current trunk source , ConnectionString::connect 似乎只在字符串本身无效时抛出异常(并且您已经从第一个条件语句中知道它不是)。

它只是返回一个 NULL 指针并在所有其他情况下设置 errMsg

为你辩解,我根本找不到任何地方的记录; a very basic example of connect是我能找到的所有内容。

string err_msg;
ConnectionString cs = ConnectionString::parse(connString, err_msg);

if (!cs.isValid()) {
throw "bad: " + err_msg;
}

DBClientBase* conn = cs.connect(err_msg);

if (!conn) {
cout << "Unable to connect to DB: " << err_msg << endl;
return 1;
}

关于c++ - MongoDB C++ 驱动程序不抛出连接错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8796868/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com