我正在使用带有此(稍微简化)代码的mysql c连接器.
try
{
statement->setString(1, word);
statement->executeUpdate();
}
catch( sql::SQLException& e )
{
// I don't get here
return sqlerrno_to_error_code( e.getErrorCode() );
}
catch( std::exception& e )
{
// I do get here and the cast works
sql::SQLException& sqle = (sql::SQLException&) e;
return sqlerrno_to_error_code( sqle.getErrorCode() );
}
连接器应该抛出sql :: SQLException,它是从std :: exception派生的,并具有一些其他方法,如getErrorCode().
引发的异常在第二个catch块中捕获,但是可以成功地强制转换为sql :: SQLException(并用作).
更奇怪的是,不同可执行文件中的类似代码按预期捕获了sql :: SQLException.它们之间的区别在于,第一个位于共享库(.so)中,该共享库已加载dlopen().
RHEL 5.7 32位,gcc 4.1.2