SQlite3数据库使用异常
我正在使用包装器 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
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.
问题是我混合使用 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() 是无害的无操作。我的错误是:
虽然应该是:
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 thesqlite3_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 fromsqlite3_open()
,sqlite3_open16()
, orsqlite3_open_v2()
, and not previously closed. Callingsqlite3_close()
with a NULL pointer argument is a harmless no-op.my mistake Was:
while it should be: