SQLite Blob读写的局限性

SQLite Blob读写的局限性,第1张

概述在使用SQLite在Windows Mobile上的大容量BLOB读写时,遇到一个OOM(Out Of Memory)的问题,让我们都觉得不可思议:  试看下边的SQL语句代码片段:     executeStmt(db, stmt, "create table foo(id integer not null primary key, content blob null, content2 blo

在使用sqlite在windows Mobile上的大容量BLOB读写时,遇到一个OOM(Out Of Memory)的问题,让我们都觉得不可思议:

试看下边的SQL语句代码片段:

executeStmt(db,stmt,"create table foo(ID integer not null primary key,content blob null,content2 blob null)");

sqlite3_stmt* stmt2 = NulL;


sqlite3_stmt* stmt3 = NulL;

sqlite3_stmt* stmt4 = NulL;
不过是单个数据库列的0填充而已,怎么会出现OOM呢?
我直接给它的作者Dr. Richard Hipp和他的team发邮件询问,得到的答复是:
每次更新,sqlite都会读取该行的数据,加载到内存里。难怪,第一列可是要10M内存。
Richard建议:使用incremental BLOB I/O mechanism机制进行读写。
可是这个机制局限性依然明显:
e.g.
first write,20K,then append 10K. If we want to append it,we need to zeroblob 30K first. Otherwise,sqlite_blob_write will fail to write the chunk.
???
他的答复是:
Unfortunately,no; there is no way to increase the size of a row without allocating memory sufficIEnt to hold the entire row.
除非要更改sqlite的文件格式。一旦更改,将会打破与以前sqlite文件的兼容性。那是不可容忍的。
看来,使用小内存逐步分片更改blob字段,在目前来看无法实现。只能接受此现实。 总结

以上是内存溢出为你收集整理的SQLite Blob读写的局限性全部内容,希望文章能够帮你解决SQLite Blob读写的局限性所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/1175940.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-02
下一篇 2022-06-02

发表评论

登录后才能评论

评论列表(0条)

保存