SQLite的 cannot commit - no transaction is active报错

前端之家收集整理的这篇文章主要介绍了SQLite的 cannot commit - no transaction is active报错前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

最近测试sqlite时遇到了一个奇怪的问题,我在大批量循环插入记录时偶然会报告“cannot commit - no transaction is active”错误,多次尝试仍然如此,代码如下:

...

for (int j=0;j<100000;j++)
{

rc = sqlite3_exec(db,"BEGIN TRANSACTION;",NULL,&errMsg);
for (int i=0;i<1000;i++)
{
strsql.Format("INSERT INTO students VALUES(%d,%d,'%30d');",j,i,j*10000+i);
rc = sqlite3_exec(db,strsql,&errMsg);
}
strsql = "COMMIT TRANSACTION;";

rc = sqlite3_exec(db,&errMsg);

}

...

后来,我发现每当报告“cannot commit - no transaction is active”错误前,还会报告一个“database or disk is full”错误,该错误是"INSERT INTO students VALUES(%d,时报告的,但事实上,我的硬盘空间很足,sqlite不是独占数据库访问吗?疑惑之下我到网上搜索了一番,发现可能是Window文件系统问题或杀毒软件影响^.^,看来暂时没办法解决了,只能自己写好出错处理或期待sqlite出新版解决该BUG了。

原文链接:https://www.f2er.com/sqlite/203198.html

猜你在找的Sqlite相关文章