我遇到了混合托管代码和非托管代码的问题。我在Vista x64 SP1下的Visual Studio 2008中的单个解决方案下创建了两个项目。其中一个没有CLR支持,是一个静态库。我的第二个项目被编译为启用了CLR的可执行文件。它取决于第一个静态库,并将WinForms事件传递给它。
当我在没有调试的情况下启动应用程序时,我得到一个例外,我把这个例外中的信息放在这里:http://pastebin.com/f46ad1211。
以下是运行的非托管lib的代码:
void manager::init() // <-- Called from the .exe project
{
this->log.open("C:\\development\\log.txt");
this->storage = storage_manager(&(this->log), &(this->settings));
this->storage.load_settings();
}
&安培;
void storage_manager::load_settings()
{
this->error_check(sqlite3_open("settings.db", &(this->db_settings_p)));
sqlite3_stmt* read_settings;
this->error_check(sqlite3_prepare_v2(this->db_settings_p, "SELECT name, value FROM settings", 1024, &read_settings, NULL));
int step_code;
std::string name;
std::string value;
while(true)
{
step_code = sqlite3_step(read_settings);
if(step_code == SQLITE_DONE)
{
break;
}
else if(step_code == SQLITE_ROW)
{
name = std::string(reinterpret_cast<const char*>(sqlite3_column_text(read_settings, 0)));
value = std::string(reinterpret_cast<const char*>(sqlite3_column_text(read_settings, 1)));
(*(this->settings))[name] = value;
}
else
{
this->error();
}
}
sqlite3_reset(read_settings);
sqlite3_finalize(read_settings);
}
&安培;
void storage_manager::error_check(int rc)
{
if(rc)
{
this->error();
}
}
void storage_manager::error() //Sure of error
{
std::string error_msg;
error_msg = "Storage Manager: SQLite Error (";
error_msg += sqlite3_errcode(this->db_p);
error_msg += ") - ";
error_msg += sqlite3_errmsg(this->db_p);
this->log->write(error_msg.c_str(), error_msg.length());
this->log->flush();
}
我无法理解为什么我在非托管库中收到托管(System.BlahBlahBlah)异常。有没有办法让两者完全分开?
答案 0 :(得分:1)
基础异常实际上是一个Windows异常,CLR显然会为您变成CLR异常。您有访问冲突。你应该能做的是,在Visual Studio中,前往Debug&gt;违规行为的例外和中断。这应该让你进入并查看本机代码中的所有可怕错误并开始诊断问题。