SQlite3数据库使用异常

发布于 2024-10-22 03:55:54 字数 461 浏览 1 评论 0原文

我正在使用包装器 SQLITE3 来访问 sqlite3 数据库,一切都很好,我关闭了所有已经打开的数据库,但是当我的应用程序完成执行并在主程序中执行(返回 0;)时,如下异常上升:

在 0x75d9b727 处出现未处理的异常 SQLCONVERTOR.exe:微软C++ 异常:CppSQLite3 异常 内存位置 0x0026f8d0..

在以下代码中:

void __cdecl exit (
        int code
        )
{
        doexit(code, 0, 0); /* full term, kill process */
}

我是一名 C++ 程序员,我花了大约一个月的时间来解决这个问题,但什么也没解决。

如果有人知道我必须做什么?我要怎么想?我感谢他/这里的帮助。

I am using a wrapper SQLITE3 to access sqlite3 data base, every thing is fine and i closed all the data bases I already have opened, but when my application is finished the execution and while execute (return 0;) in the main program the following exception rise:

Unhandled exception at 0x75d9b727 in
SQLCONVERTOR.exe: Microsoft C++
exception: CppSQLite3 Exception at
memory location 0x0026f8d0..

at the following code:

void __cdecl exit (
        int code
        )
{
        doexit(code, 0, 0); /* full term, kill process */
}

I am a c++ programmer and i spent around a month in solving this issue but nothing at all.

if any one have any idea what i have to do? how i have to think? i appreciate his/here help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

淡笑忘祈一世凡恋 2024-10-29 03:55:54

sqlite3 是 C 语言,因此不会抛出异常。

您实际上得到的是访问冲突,微软正在将其转变为异常。

问题是我们看不到您的任何代码。

sqlite3 is in C therefore does not throw exceptions.

What you are actually getting is an access violation, which Microsoft is turning into an exception.

The problem is we cannot see any of your code.

我做我的改变 2024-10-29 03:55:54

问题是我混合使用 C 接口中的一些 API 和 CPPSqlite3 包装器中的一些函数,基本上,使用 sqlite3_close API 与包装器中的 close 函数不同,包装器将 DB 指针设置为 null ,而 sqlite3_close 则不会执行此操作,因此您必须手动执行此操作。

换句话说:
sqlite3_close(C) 的 C 参数必须是 NULL 指针或从 sqlite3_open()sqlite3_open16() 获取的 sqlite3 对象指针,或 sqlite3_open_v2(),并且之前未关闭。使用 NULL 指针参数调用 sqlite3_close() 是无害的无操作。

我的错误是:

while( (pStmt = sqlite3_next_stmt(NewDB.mpDB, 0))!=0 )
{
    sqlite3_finalize(pStmt);
}
sqlite3_close (NewDB.mpDB);

虽然应该是:

while( (pStmt = sqlite3_next_stmt(NewDB.mpDB, 0))!=0 )
{
    sqlite3_finalize(pStmt);
}
NewDB.close();

The problem was That I mix using some APIs from the C Interface and some functions from the CPPSqlite3 Wrapper, Basically, using sqlite3_close API is different from close function in the wrapper, the wrapper set the DB pointer to null, while the sqlite3_close dose not do and hence you have to do that manually.

In other Words:
The C parameter to sqlite3_close(C) must be either a NULL pointer or an sqlite3 object pointer obtained from sqlite3_open(), sqlite3_open16(), or sqlite3_open_v2(), and not previously closed. Calling sqlite3_close() with a NULL pointer argument is a harmless no-op.

my mistake Was:

while( (pStmt = sqlite3_next_stmt(NewDB.mpDB, 0))!=0 )
{
    sqlite3_finalize(pStmt);
}
sqlite3_close (NewDB.mpDB);

while it should be:

while( (pStmt = sqlite3_next_stmt(NewDB.mpDB, 0))!=0 )
{
    sqlite3_finalize(pStmt);
}
NewDB.close();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文